Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ dependencies = [
"requests >=2.32.2, <3.0",
"typing-extensions >=4.11.0, <5.0",
"frozendict >=2.4.3, <3.0",
"certifi >=2026.1.4, <2026.2.0",
"certifi >=2026.1.4",
"PyYAML >=6.0.1, <7.0.0",
"cryptography >=43.0.1, <43.0.2",
"cryptography >=43.0.1, <47.0",
"python-dotenv >=1.0.0, <2.0.0",
"itsdangerous >=2.2.0, <3.0.0",
"nest-asyncio >=1.5.8, <2.0.0",
Expand All @@ -41,7 +41,7 @@ dependencies = [
fastapi = [
"fastapi >=0.110.0, <1.0.0",
"python-multipart >=0.0.6, <1.0.0",
"uvicorn >=0.37.0, <0.38.0",
"uvicorn >=0.37.0, <1.0.0",
]
flask = [
"flask >=3.0.0, <4.0.0",
Expand Down Expand Up @@ -87,13 +87,7 @@ coverage = ">=7.10.6"
pytest-django = "^4.5.2"
mypy = "^1.5.0"
bandit = "^1.7"
# pylint is conditionally installed based on Python version to maintain Python 3.9 compatibility
# Python 3.10+: pylint >=4.0.0 (use pip install -e ".[dev]" for conditional installation)
# Python 3.9: pylint >=2.0, <4.0
# Note: Poetry doesn't support multiple conditional version constraints for the same package.
# This entry uses the Python 3.9-compatible version. Python 3.10+ users can upgrade manually
# or use: pip install -e ".[dev]" which respects the conditional markers in [project.optional-dependencies]
pylint = ">=2.0,<4.0"
pylint = ">=4.0.0"
pycodestyle = "^2.0"
pytest-asyncio = "^0.26.0"
pytest-timeout = "^2.2.0"
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ requests~=2.32.0
# Core dependencies
django>=4.2.0,<5.0.0
python-dotenv>=1.0.0
cryptography>=41.0.0
cryptography>=43.0.1,<47.0
pyjwt>=2.10.0
fastapi>=0.110.0
flask>=3.0.0
Expand All @@ -16,7 +16,7 @@ python-dateutil>=2.9.0,<3.0
urllib3>=2.6.3
Authlib>=1.3.0,<2.0
typing-extensions>=4.11.0,<5.0
certifi>=2026.1.4,<2026.2.0
certifi>=2026.1.4
pydantic>=2.0.0,<3.0.0

# Development dependencies
Expand Down
Loading