We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca3fd9d commit 2d9c6ffCopy full SHA for 2d9c6ff
pyproject.toml
@@ -13,9 +13,12 @@ requires = [
13
# expressions (in compliance with PEP 639):
14
# https://setuptools.pypa.io/en/stable/history.html#v77-0-0
15
#
16
- # Unfortunately setuptools 77.0.0 does not support Python 3.7 and
17
- # 3.8.
18
- "setuptools>=61.0.0"
+ # setuptools>=68.0.0 was the last version to support Python 3.7.
+ #
+ # setuptools>=75.3.2 was the last version to support Python 3.7.
19
+ "setuptools>=68.0.0; python_version == '3.7'",
20
+ "setuptools>=75.3.2; python_version == '3.8'",
21
+ "setuptools>=77.0.0; python_version >= '3.9'",
22
]
23
24
[project]
0 commit comments