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: I55c0f279bbcaa74763132667ab488396a561d35b
This commit is contained in:
Jeremy Stanley 2021-06-17 17:15:17 +00:00
parent 4d1df7b0e7
commit db0c72774c
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
[tox] [tox]
minversion = 3.2.0 minversion = 3.2.0
envlist = linters,docs,py envlist = linters,docs,py
skipdist = True skipsdist = True
# Automatic envs (pyXX) will only use the python version appropriate to that # Automatic envs (pyXX) will only use the python version appropriate to that
# env and ignore basepython inherited from [testenv] if we set # env and ignore basepython inherited from [testenv] if we set