fix: adjust Python version requirement for slowapi compatibility
All checks were successful
audit / audit (push) Has been skipped
ci-cd / build (push) Has been skipped
ci / build (push) Has been skipped
autofix / fix (push) Has been skipped
python-tests / test (push) Successful in 21s
python-tests / test-specific (push) Has been skipped
security-scanning / audit (push) Has been skipped
test / test (push) Has been skipped
ci-cd / deploy (push) Has been skipped
ci / deploy (push) Has been skipped

PYTHON VERSION FIX: Make project compatible with slowapi

Issue:
- Project requires Python >=3.14 but slowapi only supports Python <4.0
- Poetry dependency resolution failing due to Python version conflict
- slowapi versions 0.1.0-0.1.9 all require Python >=3.6,<4.0

Solution:
- Change requires-python from '>=3.13.5' to '>=3.13.5,<4.0'
- This makes the project compatible with slowapi Python requirements
- Maintains minimum Python version while adding upper bound

Expected results:
- Poetry dependency resolution should succeed
- slowapi should install properly
- All dependencies should be compatible
- Test workflow should proceed to execution

This resolves the Python version compatibility issue that was
blocking dependency installation.
This commit is contained in:
2026-03-27 21:03:21 +01:00
parent 8154c5e2b6
commit 16224c6103

View File

@@ -110,7 +110,7 @@ authors = [
]
readme = "cli/README.md"
license = "MIT"
requires-python = ">=3.13.5"
requires-python = ">=3.13.5,<4.0"
dependencies = [
"click==8.3.1",
"httpx==0.28.1",