Skip to content
Merged
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ jobs:
uses: ./.github/workflows/shared-tests.yml
with:
python-version: '3.9'
secrets: inherit
20 changes: 8 additions & 12 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
python_dateutil >= 2.5.3
setuptools >= 75.3.3
urllib3 >= 1.25.3, < 3
pydantic >= 2
typing-extensions >= 4.7.1
DateTime~=5.5
PyJWT>=2.12,<3
requests~=2.32.3
coverage
cryptography
python-dotenv>=1.0,<2
httpx
pydantic >= 2.0.0
typing-extensions >= 4.0.0
PyJWT >= 2.12, < 3
requests >= 2.28.0
cryptography >= 44.0.2
httpx >= 0.21.2
python-dotenv >= 1.1.0, < 2
coverage >= 7.8.0
22 changes: 9 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,23 +29,19 @@
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'python_dateutil >= 2.5.3',
'setuptools >= 75.3.3',
'urllib3 >= 1.25.3, < 3',
'pydantic >= 2',
'typing-extensions >= 4.7.1',
'DateTime~=5.5',
'pydantic >= 2.0.0',
'typing-extensions >= 4.0.0',
'PyJWT >= 2.12, < 3',
'requests~=2.32.3',
'coverage',
'cryptography',
'python-dotenv >= 1.0, < 2',
'httpx'
'requests >= 2.28.0',
'cryptography >= 44.0.2',
'httpx >= 0.21.2',
'python-dotenv >= 1.1.0, < 2',
],
extras_require={
'dev': [
'codespell',
'ruff'
'codespell >= 2.4.1',
'ruff >= 0.9.0',
'pre-commit >= 4.3.0',
]
},
python_requires=">=3.9",
Expand Down
Loading