Skip to content

Commit e7dc844

Browse files
authored
Always require typing_extensions library (#5123)
1 parent 70d8677 commit e7dc844

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGES/5107.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Always require ``typing_extensions`` library.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def build_extension(self, ext):
7171
"async_timeout>=3.0,<4.0",
7272
"yarl>=1.0,<2.0",
7373
'idna-ssl>=1.0; python_version<"3.7"',
74-
'typing_extensions>=3.6.5; python_version<"3.7"',
74+
"typing_extensions>=3.6.5",
7575
]
7676

7777

tests/test_web_functional.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1952,7 +1952,8 @@ async def handler(request):
19521952

19531953

19541954
@pytest.mark.parametrize(
1955-
"status", [101, 204],
1955+
"status",
1956+
[101, 204],
19561957
)
19571958
async def test_response_101_204_no_content_length_http11(
19581959
status, aiohttp_client

0 commit comments

Comments
 (0)