Skip to content

Commit

Permalink
🐛 Fix setuptools version compatibility with Python 3.7
Browse files Browse the repository at this point in the history
- Lowered the required version of setuptools to be compatible with Python 3.7.
- Resolved the error: "No matching distribution found for setuptools>=70.0.0" in the GitHub Actions workflow.
  • Loading branch information
loureirorg committed Sep 19, 2024
1 parent d31360b commit ac6af81
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
line-length = 79

[build-system]
requires = ["setuptools>=70.0.0", "wheel"]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
Expand Down

0 comments on commit ac6af81

Please sign in to comment.