Skip to content

Commit

Permalink
Bump aiohttp and explicitly require greenlet
Browse files Browse the repository at this point in the history
  • Loading branch information
caspervdw committed Nov 6, 2024
1 parent b13f239 commit ea9f88f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

- Test against PostGRES 16 (instead of 14).

- Test against Python 3.13 (bumped asyncpg to `0.30.*`).
- Test against Python 3.13 (bumped asyncpg to `0.30.*` and aiohttp to `3.10.*`).


## 0.18.0 (2024-10-21)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ auth = ["pyjwt==2.9.*", "cryptography==43.0.*"] # pyjwt[crypto]
amqp = ["pika==1.3.*"]
celery = ["celery==5.4.*"]
fluentbit = ["fluent-logger"]
sql = ["sqlalchemy==2.0.*", "asyncpg==0.30.*"]
sql = ["sqlalchemy==2.0.*", "asyncpg==0.30.*", "greenlet==3.*"]
sql-sync = ["sqlalchemy==2.0.*"] # also requires psycopg2 or psycopg2-binary
# help the resolver a bit by copying version pins from aioboto3 / aiobotocore
s3 = ["aioboto3==13.1.*", "aiobotocore==2.13.1", "boto3==1.34.131", "types-aioboto3[s3]"]
s3-sync = ["boto3==1.34.*", "boto3-stubs[s3]"]
api-client = ["aiohttp==3.9.*", "urllib3==2.0.*"]
api-client = ["aiohttp==3.10.*", "urllib3==2.0.*"]
profiler = ["yappi"]
debugger = ["debugpy"]
nanoid = ["nanoid==2.0.0"]
Expand Down

0 comments on commit ea9f88f

Please sign in to comment.