summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnderson Bravalheri <andersonbravalheri@gmail.com>2023-01-07 15:49:29 +0000
committerGitHub <noreply@github.com>2023-01-07 15:49:29 +0000
commit1f942b9a2b74d581337d402c88da71201311e54f (patch)
tree4fc0299186f216ad067651e8fd74ce1495e69e59
parent08d329778ec73844bc1d0228305b35e09137b48e (diff)
parent2174346feab47e3aa797b2d01c814d6d3526d81e (diff)
downloadpython-setuptools-git-1f942b9a2b74d581337d402c88da71201311e54f.tar.gz
Merge pull request #3756 from abravalheri/fix-docs
CI: Attempt to fix build for docs
-rw-r--r--docs/conf.py1
-rw-r--r--docs/deprecated/distutils-legacy.rst2
2 files changed, 2 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py
index a52569c9..831fcc89 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -176,6 +176,7 @@ nitpick_ignore = [
('envvar', 'DISTUTILS_DEBUG'), # undocumented
('envvar', 'HOME'), # undocumented
('envvar', 'PLAT'), # undocumented
+ ('envvar', 'DIST_EXTRA_CONFIG'), # undocumented
('py:attr', 'CCompiler.language_map'), # undocumented
('py:attr', 'CCompiler.language_order'), # undocumented
('py:class', 'distutils.dist.Distribution'), # undocumented
diff --git a/docs/deprecated/distutils-legacy.rst b/docs/deprecated/distutils-legacy.rst
index 63c8ff07..30adcd2b 100644
--- a/docs/deprecated/distutils-legacy.rst
+++ b/docs/deprecated/distutils-legacy.rst
@@ -13,7 +13,7 @@ Since the 60.0.0 release, Setuptools includes a local, vendored copy of distutil
Unless ``SETUPTOOLS_USE_DISTUTILS=stdlib``, they will have no effect on the build process.
You can still use a global user config file, ``~/.pydistutils.cfg`` (POSIX) or ``%USERPROFILE%/pydistutils.cfg`` (Windows),
- or use the environment variable :doc:`DIST_EXTRA_CONFIG <deprecated/distutils/configfile>` to point to another
+ or use the environment variable :ref:`DIST_EXTRA_CONFIG <setup-config>` to point to another
supplementary configuration file.