There was an error while loading. Please reload this page.
.whl
Lib/test/wheeldata/
1 parent 01105c7 commit ba253a4Copy full SHA for ba253a4
4 files changed
Lib/test/support/__init__.py
@@ -2193,7 +2193,9 @@ def _findwheel(pkgname):
2193
If set, the wheels are searched for in WHEEL_PKG_DIR (see ensurepip).
2194
Otherwise, they are searched for in the test directory.
2195
"""
2196
- 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(
2197
+ TEST_HOME_DIR, 'wheeldata',
2198
+ )
2199
filenames = os.listdir(wheel_dir)
2200
filenames = sorted(filenames, reverse=True) # approximate "newest" first
2201
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
@@ -2318,6 +2318,7 @@ TESTSUBDIRS= idlelib/idle_test \
2318
test/tokenizedata \
2319
test/tracedmodules \
2320
test/typinganndata \
2321
+ test/wheeldata \
2322
test/xmltestdata \
2323
test/xmltestdata/c14n-20
2324
0 commit comments