diff options
| author | Jeremy Stanley <fungi@yuggoth.org> | 2021-06-17 17:07:39 +0000 |
|---|---|---|
| committer | Jeremy Stanley <fungi@yuggoth.org> | 2021-06-17 17:07:39 +0000 |
| commit | 98979cfc7f27e323e576af58b5b5d9c0594a8a70 (patch) | |
| tree | eba9073cba1fed8bc37de4b884b8401e3846c4f5 | |
| parent | f873428f2c9eb3a8d99b80e959d9fe568d6608da (diff) | |
| download | python-openstackclient-98979cfc7f27e323e576af58b5b5d9c0594a8a70.tar.gz | |
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: I05c1cc0c2fbf77021cc1e05bc96bee03528c69f0
| -rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ [tox] minversion = 3.2.0 envlist = py38,pep8 -skipdist = True +skipsdist = True # Automatic envs (pyXX) will only use the python version appropriate to that # env and ignore basepython inherited from [testenv] if we set # ignore_basepython_conflict. |
