Skip to content

Commit

Permalink
Remove Python 3.7 compatibility from test_sysconfig.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Apr 12, 2024
1 parent 0543254 commit 6b6633a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 21 deletions.
18 changes: 0 additions & 18 deletions distutils/tests/py37compat.py

This file was deleted.

4 changes: 1 addition & 3 deletions distutils/tests/test_sysconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
import pytest
from jaraco.text import trim

from . import py37compat


def _gen_makefile(root, contents):
jaraco.path.build({'Makefile': trim(contents)}, root)
Expand Down Expand Up @@ -251,7 +249,7 @@ def test_customize_compiler_before_get_config_vars(self, tmp_path):
tmp_path,
)
p = subprocess.Popen(
py37compat.subprocess_args(sys.executable, tmp_path / 'file'),
[sys.executable, tmp_path / 'file'],
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
universal_newlines=True,
Expand Down

0 comments on commit 6b6633a

Please sign in to comment.