diff --git a/httpx_socks/__init__.py b/httpx_socks/__init__.py index a6a717c..8aace17 100644 --- a/httpx_socks/__init__.py +++ b/httpx_socks/__init__.py @@ -1,5 +1,5 @@ __title__ = 'httpx-socks' -__version__ = '0.7.4' +__version__ = '0.7.5' from python_socks import ( ProxyError, diff --git a/requirements.txt b/requirements.txt index 2b4c4c4..2af20f4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ httpx>=0.21.0,<0.24.0 -httpcore>=0.14.0,<0.16.0 +httpcore>=0.14.0,<0.17.0 anyio==3.* python-socks>=2.0.0 async-timeout>=3.0.1 diff --git a/setup.py b/setup.py index 1bed7ca..4c70fa2 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ keywords='httpx asyncio socks socks5 socks4 http proxy', install_requires=[ 'httpx>=0.21.0,<0.24.0', - 'httpcore>=0.14.0,<0.16.0', + 'httpcore>=0.14.0,<0.17.0', 'python-socks>=2.0.0', ], extras_require={