File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ isodate = "^0.6.0"
121
121
openapi-core = " >=0.13.4,<0.13.7"
122
122
pyrsistent = " >=0.16,<0.19"
123
123
PyYAML = " >=5.1,<7.0"
124
- typing-extensions = " >=3.7,<5.0"
124
+ typing-extensions = { python = " <3.8 " , version = " >=3.7,<5.0" }
125
125
126
126
[tool .poetry .dev-dependencies ]
127
127
aioredis = {extras = [" hiredis" ], version = " ^2.0.0" }
Original file line number Diff line number Diff line change 13
13
14
14
15
15
try :
16
- from typing_extensions import Literal , Protocol , TypedDict
16
+ from typing import Literal , Protocol , TypedDict
17
17
except ImportError :
18
- from typing import Literal , Protocol , TypedDict # type: ignore
18
+ from typing_extensions import Literal , Protocol , TypedDict # type: ignore
19
19
20
20
from aiohttp import web
21
21
from aiohttp_middlewares .annotations import Handler
You can’t perform that action at this time.
0 commit comments