Skip to content

Commit bbceca7

Browse files
committed
Bump to 3.6.3
1 parent 6a5ab96 commit bbceca7

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,15 @@ Changelog
1414

1515
.. towncrier release notes start
1616
17+
3.6.3 (2020-10-12)
18+
==================
19+
20+
Bugfixes
21+
--------
22+
23+
- Pin yarl to ``<1.6.0`` to avoid buggy behavior that will be fixed by the next aiohttp
24+
release.
25+
1726
3.6.2 (2019-10-09)
1827
==================
1928

aiohttp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '3.6.2'
1+
__version__ = '3.6.3'
22

33
from typing import Tuple # noqa
44

requirements/ci-wheel.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ tox==3.13.2
1515
trustme==0.5.2; platform_machine=="x86_64" # cryptography doesn't work on i686
1616
cryptography==2.7; platform_machine=="x86_64" # cryptography doesn't work on i686
1717
twine==1.15.0
18-
yarl==1.3.0
18+
yarl==1.5.1
1919

2020
# Using PEP 508 env markers to control dependency on runtimes:
2121
aiodns==2.0.0; platform_system!="Windows" # required c-ares will not build on windows

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def build_extension(self, ext):
7676
'chardet>=2.0,<4.0',
7777
'multidict>=4.5,<5.0',
7878
'async_timeout>=3.0,<4.0',
79-
'yarl>=1.0,<2.0',
79+
'yarl>=1.0,<1.6.0',
8080
'idna-ssl>=1.0; python_version<"3.7"',
8181
'typing_extensions>=3.6.5; python_version<"3.7"',
8282
]

0 commit comments

Comments
 (0)