Skip to content

Commit

Permalink
chore: drop python 3.7 support, add 3.12 support
Browse files Browse the repository at this point in the history
bump aiohttp to 3.10, which supports python 3.12, but drops support for python 3.7. google colab now seems to default to python 3.10, so dropping support for 3.7 should be ok.
  • Loading branch information
moldhouse committed Aug 9, 2024
1 parent 0b90633 commit 90d04f0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# We currently only support up to python 3.11
# because aiohttp does not support 3.12 as of yet.
# 3.7 because Google Colab uses 3.7 by default.
python-version: [3.7, 3.11]
python-version: [3.8, 3.12]

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 7.2.0

### Python support

- Minimal supported Python version is now 3.8
- Dependency `aiohttp` is specified to be at least of version `3.10`.

## 7.1.0

- Introduce support for internal feature 'tags'
Expand Down
2 changes: 1 addition & 1 deletion aleph_alpha_client/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "7.1.0"
__version__ = "7.2.0"
MIN_API_VERSION = "1.16.0"
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ def version():
install_requires=[
"requests >= 2.28",
"urllib3 >= 1.26",
"aiohttp >= 3.8.6",
"aiodns >= 3.0.0",
"aiohttp >= 3.10.2",
"aiodns >= 3.2.0",
"aiohttp-retry >= 2.8.3",
"tokenizers >= 0.13.2",
"typing_extensions >= 4.5.0",
Expand Down

0 comments on commit 90d04f0

Please sign in to comment.