You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
3f768d5261
- fix build with recent setuptools that removed the 2to3 conversion
12 lines
267 B
Diff
12 lines
267 B
Diff
--- setup.py.orig 2022-01-15 09:30:26.000000000 -0500
|
|
+++ setup.py 2022-01-15 09:30:45.000000000 -0500
|
|
@@ -2,8 +2,6 @@
|
|
import sys
|
|
|
|
extra = {}
|
|
-if sys.version_info >= (3, 0):
|
|
- extra.update(use_2to3=True)
|
|
|
|
try:
|
|
from setuptools import setup, find_packages
|