You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
80005357d1
Defaulting python.pep517 to yes for py311 module ports, to prepare for the future removal of distutils from the stdlib and 'setup.py install' support from setuptools. Added py311 subports for py-build, py-installer, and dependencies.
12 lines
507 B
Diff
12 lines
507 B
Diff
--- Lib/sysconfig.py.orig 2021-03-02 03:48:59.000000000 +1100
|
|
+++ Lib/sysconfig.py 2021-03-18 00:19:40.000000000 +1100
|
|
@@ -429,7 +429,7 @@
|
|
f.write('# system configuration generated and used by'
|
|
' the sysconfig module\n')
|
|
f.write('build_time_vars = ')
|
|
- pprint.pprint(vars, stream=f)
|
|
+ pprint.pprint(vars, stream=f, width=4000)
|
|
|
|
# Create file used for sys.path fixup -- see Modules/getpath.c
|
|
with open('pybuilddir.txt', 'w', encoding='utf8') as f:
|