diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-17 23:28:58 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2021-12-17 23:28:58 -0500 |
| commit | cbe70602e408670b306871fbd64f3255019d4b51 (patch) | |
| tree | 27dfa57a0622e7e484aa0a632445311bf6a206a8 /setuptools/tests | |
| parent | a9e48a650be03781cba76de2b2863c7136219bcf (diff) | |
| download | python-setuptools-git-cbe70602e408670b306871fbd64f3255019d4b51.tar.gz | |
Bump minimum version to rely on WindowsPath in subprocess. Fixes #2932.
Diffstat (limited to 'setuptools/tests')
| -rw-r--r-- | setuptools/tests/test_develop.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/tests/test_develop.py b/setuptools/tests/test_develop.py index 70c5794c..1aeb7ffe 100644 --- a/setuptools/tests/test_develop.py +++ b/setuptools/tests/test_develop.py @@ -219,6 +219,6 @@ class TestNamespaces: # now run 'sample' with the prefix on the PYTHONPATH bin = 'Scripts' if platform.system() == 'Windows' else 'bin' exe = prefix / bin / 'sample' - if sys.version_info < (3, 7) and platform.system() == 'Windows': + if sys.version_info < (3, 8) and platform.system() == 'Windows': exe = str(exe) subprocess.check_call([exe], env=env) |
