Skip to content

Commit c13db75

Browse files
committed
Fix documentation build
Signed-off-by: Bernát Gábor <[email protected]>
1 parent 2224abb commit c13db75

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ repos:
1212
- id: end-of-file-fixer
1313
- id: trailing-whitespace
1414
- repo: https://github.com/asottile/pyupgrade
15-
rev: v3.1.0
15+
rev: v3.2.1
1616
hooks:
1717
- id: pyupgrade
1818
args: ["--py36-plus"]

docs/changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ Bugfixes - 20.14.0
122122
v20.13.4 (2022-03-18)
123123
---------------------
124124

125-
Bugfixes - 20.14.0
125+
Bugfixes - 20.13.4
126126
~~~~~~~~~~~~~~~~~~
127127
- Improve performance of python startup inside created virtualenvs - by :user:`asottile`. (`#2317 <https://github.com/pypa/virtualenv/issues/2317>`_)
128128
- Upgrade embedded setuptools to ``60.10.0`` from ``60.9.3`` - by :user:`gaborbernat`. (`#2320 <https://github.com/pypa/virtualenv/issues/2320>`_)

docs/conf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
autosectionlabel_prefix_document = True
5151

5252
extlinks = {
53-
"issue": ("https://github.com/pypa/virtualenv/issues/%s", "#"),
54-
"pull": ("https://github.com/pypa/virtualenv/pull/%s", "PR #"),
55-
"user": ("https://github.com/%s", "@"),
56-
"pypi": ("https://pypi.org/project/%s", ""),
53+
"issue": ("https://github.com/pypa/virtualenv/issues/%s", "#%s"),
54+
"pull": ("https://github.com/pypa/virtualenv/pull/%s", "PR #%s"),
55+
"user": ("https://github.com/%s", "@%s"),
56+
"pypi": ("https://pypi.org/project/%s", "%s"),
5757
}
5858

5959

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ extras =
104104
docs
105105
commands =
106106
python -c 'import glob; import subprocess; subprocess.call(["proselint"] + glob.glob("docs/*.rst") + glob.glob("docs/**/*.rst"))'
107-
sphinx-build -d "{envtmpdir}/doctree" docs "{toxworkdir}/docs_out" --color -b html {posargs}
107+
sphinx-build -d "{envtmpdir}/doctree" docs "{toxworkdir}/docs_out" --color -b html {posargs:-W}
108108
python -c 'import pathlib; print("documentation available under file://\{0\}".format(pathlib.Path(r"{toxworkdir}") / "docs_out" / "index.html"))'
109109

110110
[testenv:upgrade]

0 commit comments

Comments
 (0)