Skip to content

Commit

Permalink
Bump minimum version to rely on WindowsPath in subprocess. Fixes #2932.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 18, 2021
1 parent a9e48a6 commit cbe7060
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setuptools/tests/test_develop.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,6 @@ def test_editable_prefix(self, tmp_path, sample_project):
# 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)

0 comments on commit cbe7060

Please sign in to comment.