There was an error while loading. Please reload this page.
.whl
Lib/test/wheeldata/
1 parent d492b19 commit be85f35Copy full SHA for be85f35
4 files changed
Lib/test/support/__init__.py
@@ -2179,7 +2179,9 @@ def _findwheel(pkgname):
2179
If set, the wheels are searched for in WHEEL_PKG_DIR (see ensurepip).
2180
Otherwise, they are searched for in the test directory.
2181
"""
2182
- 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(
2183
+ TEST_HOME_DIR, 'wheeldata',
2184
+ )
2185
filenames = os.listdir(wheel_dir)
2186
filenames = sorted(filenames, reverse=True) # approximate "newest" first
2187
for filename in filenames:
…/test/setuptools-67.6.1-py3-none-any.whl …ldata/setuptools-67.6.1-py3-none-any.whlLib/test/setuptools-67.6.1-py3-none-any.whl renamed to Lib/test/wheeldata/setuptools-67.6.1-py3-none-any.whl
Lib/test/wheel-0.40.0-py3-none-any.whl …/wheeldata/wheel-0.40.0-py3-none-any.whlLib/test/wheel-0.40.0-py3-none-any.whl renamed to Lib/test/wheeldata/wheel-0.40.0-py3-none-any.whl
Makefile.pre.in
@@ -2241,6 +2241,7 @@ TESTSUBDIRS= idlelib/idle_test \
2241
test/tokenizedata \
2242
test/tracedmodules \
2243
test/typinganndata \
2244
+ test/wheeldata \
2245
test/xmltestdata \
2246
test/xmltestdata/c14n-20 \
2247
test/ziptestdata
0 commit comments