From 69e151fd70e8d009731a59864cffa0f6ca62c2ff Mon Sep 17 00:00:00 2001 From: Jeremy Stanley Date: Thu, 17 Jun 2021 17:19:28 +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: Ibaf0c26125319f655d0deb34358daf873aefdf6c (cherry picked from commit 62dc60b7e4804534d9387046dfe7e568ff51cb19) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index a9f258c..0af17b7 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ basepython = python3 minversion = 2.0 # add docs to the list of environments once we actually have docs to generate envlist = py36,pep8,molecule,linters -skipdist = True +skipsdist = True [testenv] usedevelop = True