Skip to content

Commit

Permalink
Fix failing CI jobs (pypa#4078)
Browse files Browse the repository at this point in the history
  • Loading branch information
abravalheri committed Oct 12, 2023
2 parents fbe0d79 + ae7e384 commit 9ece3c9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion docs/conf.py
Expand Up @@ -200,7 +200,12 @@

# Allow linking objects on other Sphinx sites seamlessly:
intersphinx_mapping.update(
python=('https://docs.python.org/3', None),
# python=('https://docs.python.org/3', None),
python=('https://docs.python.org/3.11/', None),
# ^-- Python 3.11 is required because it still contains `distutils`.
# Just leaving it as `3` would imply 3.12+, but that causes an
# error with the cross references to disutils functions.
# Inventory cache may cause errors, deleting it solves the problem.
)

# Add support for the unreleased "next-version" change notes
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Expand Up @@ -13,7 +13,7 @@ commands =
usedevelop = True
extras =
testing
passenv =
pass_env =
SETUPTOOLS_USE_DISTUTILS
PRE_BUILT_SETUPTOOLS_WHEEL
PRE_BUILT_SETUPTOOLS_SDIST
Expand All @@ -25,8 +25,8 @@ passenv =
[testenv:integration]
deps = {[testenv]deps}
extras = testing-integration
passenv =
{[testenv]passenv}
pass_env =
{[testenv]pass_env}
DOWNLOAD_PATH
setenv =
PROJECT_ROOT = {toxinidir}
Expand Down

0 comments on commit 9ece3c9

Please sign in to comment.