From 5b2e171f0cd38b0f281c33df9cae196b8bf8203d Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Thu, 17 Jun 2021 17:08:58 +0000 Subject: [PATCH] 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: I56bd83c4d70e751df6576a38111a5fa5ef656dac --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e164c42623..9693e70490 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] minversion = 3.2.0 envlist = py3,validate,pep8,bashate,docs -skipdist = True +skipsdist = True ignore_basepython_conflict=true [testenv]