fix: extend Python version support to 3.13+#133
Conversation
|
🙏🏻 Praise: Thank you for your contribution! |
The upper bound `<3.13` prevents installation on Python 3.13 and 3.14, even though the package works fine on these versions. Relax the constraint to `<4` to allow newer Python releases.
a1b0740 to
8eba837
Compare
|
Rebased on latest main and resolved the conflict in pyproject.toml. The PR is now mergeable. |
|
Hello @Dauliac thanks for bumping the Python version constraint in Lockfile & local env
Docker (5 Dockerfiles)
CI
Docs
Validation
Note: Without the lockfile, Docker, CI, and validation updates, the constraint change won't be enforced consistently in dev, CI, or production. Happy to help with the follow-up PR if useful. |
Summary
requires-pythonfrom>=3.10,<3.13to>=3.10,<4--ignore-requires-python)Context
We use ecoindex-monorepo in a project running Python 3.14 and had to add
pip config set global.ignore-requires-python trueas a workaround during Docker builds. This PR removes the need for such hacks.Test plan