From e981dcc857a7bd7ba041def980829f912ccf5f8e Mon Sep 17 00:00:00 2001 From: Roman Snegirev Date: Wed, 25 May 2022 12:55:19 +0300 Subject: [PATCH] Update httpx/httpcore dependencies --- httpx_socks/__init__.py | 2 +- requirements.txt | 4 ++-- setup.py | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/httpx_socks/__init__.py b/httpx_socks/__init__.py index f279f65..a6a717c 100644 --- a/httpx_socks/__init__.py +++ b/httpx_socks/__init__.py @@ -1,5 +1,5 @@ __title__ = 'httpx-socks' -__version__ = '0.7.3' +__version__ = '0.7.4' from python_socks import ( ProxyError, diff --git a/requirements.txt b/requirements.txt index a3df452..2b4c4c4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -httpx>=0.21.0,<0.23.0 -httpcore>=0.14.0,<0.15.0 +httpx>=0.21.0,<0.24.0 +httpcore>=0.14.0,<0.16.0 anyio==3.* python-socks>=2.0.0 async-timeout>=3.0.1 diff --git a/setup.py b/setup.py index 8b0542b..1bed7ca 100644 --- a/setup.py +++ b/setup.py @@ -37,8 +37,8 @@ packages=['httpx_socks'], keywords='httpx asyncio socks socks5 socks4 http proxy', install_requires=[ - 'httpx>=0.21.0,<0.23.0', - 'httpcore>=0.14.0,<0.15.0', + 'httpx>=0.21.0,<0.24.0', + 'httpcore>=0.14.0,<0.16.0', 'python-socks>=2.0.0', ], extras_require={