Skip to content

Commit c463175

Browse files
committed
re-split support between 3.8 and above
1 parent 1a59fdb commit c463175

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pyproject.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
[build-system]
2-
# As of setuptools==74, we no longer need to be concerned about distutils calling win32api
3-
requires = ["setuptools>=74"]
2+
# setuptools==77.0.3 made PEP-639 license deprecations introduced by 77.0.0 into warnings rather than errors
3+
# 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+
]
48
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)