You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-03-31 14:42:53 -07:00
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.
13 lines
255 B
Diff
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"
|
|
|