diff options
-rw-r--r-- | Lib/test/support/__init__.py | 4 | ||||
-rw-r--r-- | Lib/test/wheeldata/setuptools-67.6.1-py3-none-any.whl (renamed from Lib/test/setuptools-67.6.1-py3-none-any.whl) | bin | 1089263 -> 1089263 bytes | |||
-rw-r--r-- | Lib/test/wheeldata/wheel-0.40.0-py3-none-any.whl (renamed from Lib/test/wheel-0.40.0-py3-none-any.whl) | bin | 64545 -> 64545 bytes | |||
-rw-r--r-- | Makefile.pre.in | 1 |
4 files changed, 4 insertions, 1 deletions
diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index 8344dd1..f2e6af0 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -2193,7 +2193,9 @@ def _findwheel(pkgname): If set, the wheels are searched for in WHEEL_PKG_DIR (see ensurepip). Otherwise, they are searched for in the test directory. """ - wheel_dir = sysconfig.get_config_var('WHEEL_PKG_DIR') or TEST_HOME_DIR + wheel_dir = sysconfig.get_config_var('WHEEL_PKG_DIR') or os.path.join( + TEST_HOME_DIR, 'wheeldata', + ) filenames = os.listdir(wheel_dir) filenames = sorted(filenames, reverse=True) # approximate "newest" first for filename in filenames: diff --git a/Lib/test/setuptools-67.6.1-py3-none-any.whl b/Lib/test/wheeldata/setuptools-67.6.1-py3-none-any.whl Binary files differindex 4b7ffd2..4b7ffd2 100644 --- a/Lib/test/setuptools-67.6.1-py3-none-any.whl +++ b/Lib/test/wheeldata/setuptools-67.6.1-py3-none-any.whl diff --git a/Lib/test/wheel-0.40.0-py3-none-any.whl b/Lib/test/wheeldata/wheel-0.40.0-py3-none-any.whl Binary files differindex 4101323..4101323 100644 --- a/Lib/test/wheel-0.40.0-py3-none-any.whl +++ b/Lib/test/wheeldata/wheel-0.40.0-py3-none-any.whl diff --git a/Makefile.pre.in b/Makefile.pre.in index 1107259..21b122a 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -2318,6 +2318,7 @@ TESTSUBDIRS= idlelib/idle_test \ test/tokenizedata \ test/tracedmodules \ test/typinganndata \ + test/wheeldata \ test/xmltestdata \ test/xmltestdata/c14n-20 |