File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 200
200
201
201
# Allow linking objects on other Sphinx sites seamlessly:
202
202
intersphinx_mapping .update (
203
- python = ('https://docs.python.org/3' , None ),
203
+ # python=('https://docs.python.org/3', None),
204
+ python = ('https://docs.python.org/3.11/' , None ),
205
+ # ^-- Python 3.11 is required because it still contains `distutils`.
206
+ # Just leaving it as `3` would imply 3.12+, but that causes an
207
+ # error with the cross references to disutils functions.
208
+ # Inventory cache may cause errors, deleting it solves the problem.
204
209
)
205
210
206
211
# Add support for the unreleased "next-version" change notes
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ commands =
13
13
usedevelop = True
14
14
extras =
15
15
testing
16
- passenv =
16
+ pass_env =
17
17
SETUPTOOLS_USE_DISTUTILS
18
18
PRE_BUILT_SETUPTOOLS_WHEEL
19
19
PRE_BUILT_SETUPTOOLS_SDIST
@@ -25,8 +25,8 @@ passenv =
25
25
[testenv:integration]
26
26
deps = {[testenv]deps}
27
27
extras = testing-integration
28
- passenv =
29
- {[testenv]passenv }
28
+ pass_env =
29
+ {[testenv]pass_env }
30
30
DOWNLOAD_PATH
31
31
setenv =
32
32
PROJECT_ROOT = {toxinidir}
You can’t perform that action at this time.
0 commit comments