We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a59fdb commit c463175Copy full SHA for c463175
pyproject.toml
@@ -1,4 +1,8 @@
1
[build-system]
2
-# As of setuptools==74, we no longer need to be concerned about distutils calling win32api
3
-requires = ["setuptools>=74"]
+# setuptools==77.0.3 made PEP-639 license deprecations introduced by 77.0.0 into warnings rather than errors
+# setuptools==75.4 dropped support for Python 3.8
4
+requires = [
5
+ "setuptools >=77.0.3; python_version >='3.9'",
6
+ "setuptools <76.1; python_version <'3.9'",
7
+]
8
build-backend = "setuptools.build_meta"
0 commit comments