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: Ie0667de615e02284cb6302d9df7165651a16f988
This commit is contained in:
Jeremy Stanley 2021-06-17 16:58:01 +00:00 committed by Alex Schultz
parent 657df296ac
commit 55889cb0df

View File

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