Skip to content

Commit

Permalink
distutils has been removed in Python 3.12
Browse files Browse the repository at this point in the history
https://peps.python.org/pep-0632/
> distutils.sysconfig — use the sysconfig module
  • Loading branch information
manicmaniac committed Jan 7, 2024
1 parent fd11527 commit 436b475
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Package/Tests/Fixtures/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
from distutils.sysconfig import parse_makefile
try:
from sysconfig import _parse_makefile as parse_makefile
except ImportError:
from distutils.sysconfig import parse_makefile
from functools import cached_property
import pathlib
import shlex
Expand Down

0 comments on commit 436b475

Please sign in to comment.