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: Icad8c8c48f7b34002a60aecc6b82e6ac56fd8a70
This commit is contained in:
Jeremy Stanley 2021-06-17 17:14:13 +00:00
parent 35f34ffdab
commit 956de6764f

@ -1,7 +1,7 @@
[tox]
minversion = 3.2.0
envlist = linters,docs,py
skipdist = True
skipsdist = True
requires =
tox-ansible >= 1.4.0