Skip to content

Commit

Permalink
Increase minimum Python version required, to “>= 3.7”.
Browse files Browse the repository at this point in the history
`setuptools.command.build` was introduced since 62.4.0 (see
pypa/wheel#487 (comment)), which
require Python >= 3.7.

Fixes https://pagure.io/python-daemon/issue/74
  • Loading branch information
hswong3i authored and Ben Finney committed Sep 11, 2024
1 parent 3309eb1 commit 80a4097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
"packaging",
"lockfile >=0.10",
],
python_requires=">=3",
python_requires=">=3.7",
extras_require={
'test': test_requirements,
'build': build_requirements,
Expand Down

0 comments on commit 80a4097

Please sign in to comment.