File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 5
5
6
6
from aiohttp_security .abc import AbstractAuthorizationPolicy , AbstractIdentityPolicy
7
7
8
- IDENTITY_KEY = 'aiohttp_security_identity_policy'
9
- AUTZ_KEY = 'aiohttp_security_autz_policy'
8
+ IDENTITY_KEY = web . AppKey ( "IDENTITY_KEY" , AbstractIdentityPolicy )
9
+ AUTZ_KEY = web . AppKey ( "AUTZ_KEY" , AbstractAuthorizationPolicy )
10
10
11
11
# _AIP/_AAP are shorthand for Optional[policy] when we retrieve from request.
12
12
_AAP = Optional [AbstractAuthorizationPolicy ]
Original file line number Diff line number Diff line change 1
1
-e .
2
- aiohttp == 3.8.6
2
+ aiohttp == 3.9.0
3
3
aiohttp-session == 2.12.0
4
4
async-timeout == 4.0.3
5
5
coverage == 7.3.2
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ def read(f):
16
16
return open (os .path .join (os .path .dirname (__file__ ), f )).read ().strip ()
17
17
18
18
19
- install_requires = [' aiohttp>=3.2.0' ]
19
+ install_requires = [" aiohttp>=3.9" ]
20
20
tests_require = install_requires + ['pytest' ]
21
21
extras_require = {'session' : 'aiohttp-session' }
22
22
You can’t perform that action at this time.
0 commit comments