Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
os: [ubuntu-latest]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -34,7 +34,7 @@ jobs:
# run: python -m pytest tests --cov=./httpx_socks --cov-report term-missing -s
run: python -m pytest tests --cov=./httpx_socks --cov-report xml
- name: Upload coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v5
with:
file: ./coverage.xml
flags: unit
Expand Down
1 change: 0 additions & 1 deletion httpx_socks/_async_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def __init__(
verify=verify,
cert=cert,
trust_env=trust_env,
http2=kwargs.get('http2', False),
)

self._pool = AsyncProxy(
Expand Down
1 change: 0 additions & 1 deletion httpx_socks/_sync_transport.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ def __init__(
verify=verify,
cert=cert,
trust_env=trust_env,
http2=kwargs.get('http2', False),
)

self._pool = SyncProxy(
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
httpx>=0.21.0,<0.28.0
httpx>=0.21.0,<0.29.0
httpcore>=0.17.3,<2.0
anyio==3.*
python-socks>=2.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_long_description():
packages=['httpx_socks'],
keywords='httpx asyncio socks socks5 socks4 http proxy',
install_requires=[
'httpx>=0.21.0,<0.28.0',
'httpx>=0.21.0,<0.29.0',
'httpcore>=0.17.3,<2.0',
'python-socks>=2.0.0',
],
Expand Down
Loading