Skip to content

Commit 6b6633a

Browse files
committed
Remove Python 3.7 compatibility from test_sysconfig.
1 parent 0543254 commit 6b6633a

File tree

2 files changed

+1
-21
lines changed

2 files changed

+1
-21
lines changed

distutils/tests/py37compat.py

Lines changed: 0 additions & 18 deletions
This file was deleted.

distutils/tests/test_sysconfig.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@
1616
import pytest
1717
from jaraco.text import trim
1818

19-
from . import py37compat
20-
2119

2220
def _gen_makefile(root, contents):
2321
jaraco.path.build({'Makefile': trim(contents)}, root)
@@ -251,7 +249,7 @@ def test_customize_compiler_before_get_config_vars(self, tmp_path):
251249
tmp_path,
252250
)
253251
p = subprocess.Popen(
254-
py37compat.subprocess_args(sys.executable, tmp_path / 'file'),
252+
[sys.executable, tmp_path / 'file'],
255253
stdout=subprocess.PIPE,
256254
stderr=subprocess.STDOUT,
257255
universal_newlines=True,

0 commit comments

Comments
 (0)