Skip to content

Commit

Permalink
Always require typing_extensions library (#5123)
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 24, 2020
1 parent 70d8677 commit e7dc844
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGES/5107.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Always require ``typing_extensions`` library.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def build_extension(self, ext):
"async_timeout>=3.0,<4.0",
"yarl>=1.0,<2.0",
'idna-ssl>=1.0; python_version<"3.7"',
'typing_extensions>=3.6.5; python_version<"3.7"',
"typing_extensions>=3.6.5",
]


Expand Down
3 changes: 2 additions & 1 deletion tests/test_web_functional.py
Original file line number Diff line number Diff line change
Expand Up @@ -1952,7 +1952,8 @@ async def handler(request):


@pytest.mark.parametrize(
"status", [101, 204],
"status",
[101, 204],
)
async def test_response_101_204_no_content_length_http11(
status, aiohttp_client
Expand Down

0 comments on commit e7dc844

Please sign in to comment.