Files
macports-ports/python/py-mac-alias/files/patch-pyproject.patch
Gregorio Litenstein 88b58cf730 py-mac-alias: py314 subport, fix setuptools req
This copies over (and refreshes) the same patch I used in py-dmgbuild. This developer uses `==` in their dependency string, meaning the build breaks with even a patch level update to setuptools.
2026-02-13 21:38:54 -05:00

13 lines
255 B
Diff

diff --git pyproject.toml pyproject.toml
index 3dadef1..d1c8c48 100644
--- pyproject.toml
+++ pyproject.toml
@@ -1,6 +1,6 @@
[build-system]
requires = [
- "setuptools==80.9.0",
+ "setuptools>=80.9.0",
]
build-backend = "setuptools.build_meta"