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 ca5894c commit 6e23203
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 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
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 6e23203

Please sign in to comment.