Skip to content

Commit

Permalink
Add Python 3.12 to CI (#246)
Browse files Browse the repository at this point in the history
* Add Python 3.12 to CI

* Bump aiohttp

* Remove setuptools

* Bump setuptools
  • Loading branch information
bieniu authored Oct 24, 2023
1 parent e013861 commit c1e1848
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ jobs:
python-version:
- "3.10"
- "3.11"
- "3.12"

steps:
- name: Check out repository
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
-r requirements.txt
-r requirements-test.txt
pre-commit==3.5.0
setuptools>=65.5.1 # not directly required, pinned by Snyk to avoid a vulnerability

-e .
1 change: 1 addition & 0 deletions requirements-test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ pytest-error-for-skips==2.0.2
pytest-timeout==2.2.0
pytest==7.4.2
ruff==0.1.1
setuptools>=68.2.2 # not directly required, pinned by Snyk to avoid a vulnerability
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
aiohttp>=3.7.0
dacite>=1.7.0
aiohttp==3.9.0b0;python_version>='3.12'
aiohttp>=3.7.0;python_version<'3.12'
dacite>=1.7.0

0 comments on commit c1e1848

Please sign in to comment.