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 https://github.com/tox-dev/tox/issues/1388 for details.

Change-Id: I7880955f656cb171395a62689678c263829bee8b
(cherry picked from commit 56adfba6d0)
(cherry picked from commit 1d0b42fb3e)
(cherry picked from commit 9197ba0adf)
(cherry picked from commit 9d65a662f1)
This commit is contained in:
Jeremy Stanley 2021-06-17 17:13:13 +00:00 committed by Jiri Podivin
parent 9844302e26
commit 880b3fd5a1
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
[tox]
minversion = 2.0
envlist = linters,docs,py37
skipdist = True
skipsdist = True
[testenv]
usedevelop = True