Skip to content

Commit 98979cf

Browse files
committed
Correct the tox option for skipping sdist generation
The tox option to skip source distribution building is skipsdist, but this seems to be often misspelled skipdist instead, which gets silently ignored and so does not take effect. Correct it everywhere, in hopes that new projects will finally stop copying this mistake around. See https://tox.readthedocs.io/en/latest/config.html#conf-skipsdist and tox-dev/tox#1388 for details. Change-Id: I05c1cc0c2fbf77021cc1e05bc96bee03528c69f0
1 parent f873428 commit 98979cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tox]
22
minversion = 3.2.0
33
envlist = py38,pep8
4-
skipdist = True
4+
skipsdist = True
55
# Automatic envs (pyXX) will only use the python version appropriate to that
66
# env and ignore basepython inherited from [testenv] if we set
77
# ignore_basepython_conflict.

0 commit comments

Comments
 (0)