Skip to content

Commit 3cb802f

Browse files
committed
Dropped support for Python 3.6 and declared support for 3.11
1 parent d88de2d commit 3cb802f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
runs-on: ubuntu-latest
3333
strategy:
3434
matrix:
35-
python: [ '3.6', '3.7', '3.8', '3.9', '3.10' ]
35+
python: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
3636
steps:
3737
- uses: actions/checkout@v3.0.2
3838
- name: Setup Build Tools

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ classifiers =
99
Development Status :: 5 - Production/Stable
1010
Intended Audience :: Developers
1111
License :: OSI Approved :: ISC License (ISCL)
12-
Programming Language :: Python :: 3.6
1312
Programming Language :: Python :: 3.7
1413
Programming Language :: Python :: 3.8
1514
Programming Language :: Python :: 3.9
1615
Programming Language :: Python :: 3.10
16+
Programming Language :: Python :: 3.11
1717
Topic :: Software Development :: Libraries :: Python Modules
1818
keywords =
1919
httpx
@@ -22,7 +22,7 @@ keywords =
2222

2323
[options]
2424
include_package_data = True
25-
python_requires = >=3.6
25+
python_requires = >=3.7
2626
packages = httpx_gssapi
2727
install_requires =
2828
httpx>=0.16,<0.24

0 commit comments

Comments
 (0)