Skip to content
This repository has been archived by the owner on Feb 29, 2024. It is now read-only.

Commit

Permalink
Correct the tox option for skipping sdist generation
Browse files Browse the repository at this point in the history
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 tox-dev/tox#1388 for details.

Change-Id: I7880955f656cb171395a62689678c263829bee8b
(cherry picked from commit 56adfba)
(cherry picked from commit 1d0b42f)
(cherry picked from commit 9197ba0adf4ee491d982af204c6fe7c190f45a71)
(cherry picked from commit 9d65a662f1edd170476e1284223311360ada44d9)
  • Loading branch information
fungi authored and jpodivin committed Mar 4, 2022
1 parent 9844302 commit 880b3fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
minversion = 2.0
envlist = linters,docs,py37
skipdist = True
skipsdist = True

[testenv]
usedevelop = True
Expand Down

0 comments on commit 880b3fd

Please sign in to comment.