Skip to content

Commit

Permalink
Merge pull request #101 from nens/eli-python-312
Browse files Browse the repository at this point in the history
support python 3.12 and 3.13
  • Loading branch information
elisalle authored Oct 9, 2024
2 parents cfe8e0c + 53970a2 commit 6a9d5f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,14 @@ jobs:
# 2022
- python: "3.10"
pins: "certifi==2022.* urllib3==1.26.* aiohttp==3.8.* aiofiles==0.8.*"
# current
# 2023
- python: "3.11"
pins: "certifi==2023.* urllib3==1.26.* aiohttp==3.9.* aiofiles==23.2.*"
# 2023
- python: "3.12"
pins: "certifi==2023.* urllib3==1.26.* aiohttp==3.9.* aiofiles==23.2.*"
# current
- python: "3.13"
pins: ""

steps:
Expand Down
3 changes: 2 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ History
4.1.9 (unreleased)
------------------

- Nothing changed yet.
- Pin aiohttp to <3.10
- Add test workflow for Python 3.12 and 3.13


4.1.8 (2024-10-03)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_version():
'sphinx-rtd-theme',
]

aio_requirements = ["aiohttp>=3.6.3", "aiofiles>=0.6"]
aio_requirements = ["aiohttp>=3.6.3,<3.10", "aiofiles>=0.6"]

# Note: mock contains a backport of AsyncMock
test_requirements = ["pytest", "pytest-asyncio", "mock ; python_version<'3.8'", 'pyjwt']
Expand Down

0 comments on commit 6a9d5f4

Please sign in to comment.