Skip to content

Commit 38b6b85

Browse files
committed
Support Python 3.11
1 parent cc957c1 commit 38b6b85

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [3.7, 3.8, 3.9, "3.10"]
16+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
1717

1818
steps:
1919
- uses: actions/checkout@v2

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"Programming Language :: Python :: 3.8",
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
26+
"Programming Language :: Python :: 3.11",
2627
"License :: OSI Approved :: MIT License",
2728
"Operating System :: OS Independent",
2829
"Development Status :: 4 - Beta",
@@ -33,6 +34,6 @@
3334
],
3435
python_requires='>=3.7',
3536
install_requires=[
36-
'httpx>=0.21.1'
37+
'httpx>=0.23.3'
3738
]
3839
)

0 commit comments

Comments
 (0)