Describe the bug
The supported Python version range is currently inconsistent across the project.
README.md references to Python 3.7--3.13
pyproject.toml references to Python >=3.8
.github/workflows/pytest.yml tests references to Python 3.8 through 3.12
To Reproduce
Refer screenshots
Expected behavior
This makes it unclear which Python versions are actually supported.
Users may assume Python 3.7 or 3.13 are supported based on the README.md , while workflows and pyproject.toml do not fully confirm that. Clear range for Python version should be maintained across all the references.
Screenshots
Desktop (please complete the following information):
Not Applicable
Additional context
Recommended Fix
- Align Python version references
- If Python 3.13 support is intended, add it to pyproject.toml
- If Python 3.7 is no longer supported, remove it from the README.md.
- Consider raising the minimum to
>=3.9 or >=3.10 if legacy support is not essential.
Describe the bug
The supported Python version range is currently inconsistent across the project.
README.mdreferences to Python3.7--3.13pyproject.tomlreferences to Python>=3.8.github/workflows/pytest.ymltests references to Python3.8through3.12To Reproduce
Refer screenshots
Expected behavior
This makes it unclear which Python versions are actually supported.
Users may assume Python 3.7 or 3.13 are supported based on the README.md , while workflows and pyproject.toml do not fully confirm that. Clear range for Python version should be maintained across all the references.
Screenshots
Desktop (please complete the following information):
Not Applicable
Additional context
Recommended Fix
>=3.9or>=3.10if legacy support is not essential.