From 812125a71f7575870e07ae8afa208fd95bf5cbb5 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 23 Jan 2019 11:45:19 -0500 Subject: [PATCH 1/2] Remove the basepython declaration from the testenv This works around https://github.com/tox-dev/tox/issues/1020 --- tox.ini | 1 - 1 file changed, 1 deletion(-) diff --git a/tox.ini b/tox.ini index a93178e73..c0fc2b56a 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,6 @@ minversion = 2.4 skipsdist = True [testenv] -basepython=python2.7 passenv = TAHOE_LAFS_* PIP_* SUBUNITREPORTER_* USERPROFILE HOMEDRIVE HOMEPATH # Get "certifi" to avoid bug #2913. Basically if a `setup_requires=...` causes # a package to be installed (with setuptools) then it'll fail on certain From f0a053d3ae591e9cf181955bfcc96dba1a2ebafa Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone Date: Wed, 23 Jan 2019 12:33:08 -0500 Subject: [PATCH 2/2] news fragment --- newsfragments/2956.other | 1 + 1 file changed, 1 insertion(+) create mode 100644 newsfragments/2956.other diff --git a/newsfragments/2956.other b/newsfragments/2956.other new file mode 100644 index 000000000..c69807477 --- /dev/null +++ b/newsfragments/2956.other @@ -0,0 +1 @@ +The Tox configuration has been fixed to work around a problem on Windows CI.