Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Scheduled weekly dependency update for week 06 #3605

Merged
merged 16 commits into from
Feb 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aiohttp/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def __set__(self, inst: Any, value: Any) -> None:

def _is_ip_address(
regex: Pattern[str], regexb: Pattern[bytes],
host: Optional[Union[str, bytes]])-> bool:
host: Optional[Union[str, bytes]]) -> bool:
if host is None:
return False
if isinstance(host, str):
Expand Down
2 changes: 1 addition & 1 deletion aiohttp/web_urldispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ def __init__(self, prefix: str, directory: PathLike,
expect_handler: Optional[_ExpectHandler]=None,
chunk_size: int=256 * 1024,
show_index: bool=False, follow_symlinks: bool=False,
append_version: bool=False)-> None:
append_version: bool=False) -> None:
super().__init__(prefix, name=name)
try:
directory = Path(directory)
Expand Down
12 changes: 6 additions & 6 deletions requirements/ci-wheel.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ brotlipy==0.7.0
cchardet==2.1.4
chardet==3.0.4
coverage==4.5.2
cython==0.29.2
cython==0.29.5
gunicorn==19.9.0
multidict==4.5.2
pytest==4.1.1
pytest==4.2.0
pytest-cov==2.6.1
pytest-mock==1.10.0
pytest-mock==1.10.1
tox==3.7.0
trustme==0.4.0
trustme==0.5.0
twine==1.12.1
yarl==1.3.0

# Using PEP 508 env markers to control dependency on runtimes:
aiodns==1.1.1; platform_system!="Windows" # required c-ares will not build on windows
aiodns==1.2.0; platform_system!="Windows" # required c-ares will not build on windows
codecov==2.0.15
uvloop==0.11.3; platform_system!="Windows" and implementation_name=="cpython" and python_version<"3.7" # MagicStack/uvloop#14
uvloop==0.12.0; platform_system!="Windows" and implementation_name=="cpython" and python_version<"3.7" # MagicStack/uvloop#14
idna-ssl==1.1.0; python_version<"3.7"
typing_extensions==3.7.2; python_version<"3.7"
2 changes: 1 addition & 1 deletion requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
setuptools-git==1.2
mypy==0.660; implementation_name=="cpython"
mypy==0.670; implementation_name=="cpython"
mypy-extensions==0.4.1; implementation_name=="cpython"

-r ci-wheel.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements/cython.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cython==0.29.2
cython==0.29.5
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
-r ci.txt
-r towncrier.txt
cherry_picker==1.2.1; python_version>="3.6"
cherry_picker==1.2.2; python_version>="3.6"
2 changes: 1 addition & 1 deletion requirements/doc.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sphinx==1.8.3
sphinx==1.8.4
sphinxcontrib-asyncio==0.2.0
pygments>=2.1
aiohttp-theme==0.1.5
Expand Down
2 changes: 1 addition & 1 deletion requirements/flake.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
flake8==3.6.0
flake8==3.7.5
isort==4.3.4
4 changes: 2 additions & 2 deletions requirements/wheel.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
cython==0.29.2
pytest==4.1.1
cython==0.29.5
pytest==4.2.0
twine==1.12.1
2 changes: 1 addition & 1 deletion tests/test_client_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ async def test_init_cookies_with_list_of_tuples(create_session) -> None:


async def test_merge_headers(create_session) -> None:
# Check incoming simple dict
# Check incoming simple dict
session = await create_session(headers={"h1": "header1",
"h2": "header2"})
headers = session._prepare_headers({"h1": "h1"})
Expand Down