16 lines
489 B
Diff
16 lines
489 B
Diff
https://github.com/schollii/pypubsub/issues/63
|
|
|
|
Python 3.14 environments commonly carry newer setuptools. The upstream
|
|
setuptools <77 cap is not tied to a known incompatibility and blocks builds
|
|
with current Python packaging stacks.
|
|
|
|
--- a/pyproject.toml
|
|
+++ b/pyproject.toml
|
|
@@ -1,6 +1,6 @@
|
|
[build-system]
|
|
-requires = ["setuptools>=68,<77", "wheel", "setuptools-scm>=7"]
|
|
+requires = ["setuptools>=68", "wheel", "setuptools-scm>=7"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|