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: I56bd83c4d70e751df6576a38111a5fa5ef656dac
This commit is contained in:
Jeremy Stanley 2021-06-17 17:08:58 +00:00
parent b424302993
commit 5b2e171f0c
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
[tox]
minversion = 3.2.0
envlist = py3,validate,pep8,bashate,docs
skipdist = True
skipsdist = True
ignore_basepython_conflict=true
[testenv]