Skip to content

Commit

Permalink
downgraded max version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Rutger Cappendijk committed Nov 17, 2023
1 parent 159d91c commit a47addd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
# We support latest 3.x version and 3.7 because
# Google Colab uses 3.7 by default.
python-version: [3.7, 3.x]
# We currently only support up to python 3.11
# because aiohttp does not support 3.12 as of yet.
# And 3.7 because Google Colab uses 3.7 by default.
python-version: [3.7, 3.11]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def version():
install_requires=[
"requests >= 2.28",
"urllib3 >= 1.26",
"aiohttp >= 3.9.0b0",
"aiohttp >= 3.8.6",
"aiodns >= 3.0.0",
"aiohttp-retry >= 2.8.3",
"tokenizers >= 0.13.2",
Expand Down

0 comments on commit a47addd

Please sign in to comment.