Skip to content

Commit fb1a51f

Browse files
Bump aiohttp from 3.9.1 to 3.10.2 (#985)
* Bump aiohttp from 3.9.1 to 3.10.2 Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.9.1 to 3.10.2. - [Release notes](https://github.com/aio-libs/aiohttp/releases) - [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst) - [Commits](aio-libs/aiohttp@v3.9.1...v3.10.2) --- updated-dependencies: - dependency-name: aiohttp dependency-type: direct:production ... Signed-off-by: dependabot[bot] <[email protected]> * Update __init__.py * Update setup.py * Update __init__.py --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sam Bull <[email protected]>
1 parent 82715fd commit fb1a51f

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

aiohttp_session/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
import time
88
from typing import (
99
Any,
10-
Awaitable,
1110
Callable,
1211
Dict,
1312
Iterator,
@@ -19,9 +18,7 @@
1918
)
2019

2120
from aiohttp import web
22-
from aiohttp.typedefs import Handler
23-
24-
Middleware = Callable[[web.Request, Handler], Awaitable[web.StreamResponse]]
21+
from aiohttp.typedefs import Handler, Middleware
2522

2623

2724
class _CookieParams(TypedDict, total=False):

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
-e .
2-
aiohttp==3.9.1
2+
aiohttp==3.10.2
33
aiomcache==0.8.1
44
cryptography==43.0.1
55
docker==7.1.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def read(f):
1919
return open(os.path.join(os.path.dirname(__file__), f)).read().strip()
2020

2121

22-
install_requires = ["aiohttp>=3.8"]
22+
install_requires = ["aiohttp>=3.10"]
2323
extras_require = {
2424
"aioredis": ["redis>=4.3.1"],
2525
"aiomcache": ["aiomcache>=0.5.2"],

0 commit comments

Comments
 (0)