Skip to content

Commit 4f646cc

Browse files
feat: mark support for python 3.11 (#829)
1 parent 438090e commit 4f646cc

File tree

6 files changed

+6
-4
lines changed

6 files changed

+6
-4
lines changed

.github/workflows/lint-test.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,8 @@ jobs:
8585
runs-on: ubuntu-latest
8686
strategy:
8787
matrix:
88-
python-version: ["3.8", "3.9", "3.10"]
88+
python-version: ["3.8", "3.9", "3.10", "3.11"]
8989
experimental: [false]
90-
include:
91-
- python-version: '3.11.0-alpha - 3.11'
92-
experimental: true
9390
fail-fast: false
9491
steps:
9592
- uses: actions/checkout@v3

changelog/785.feature.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Support Python 3.11.

changelog/827.feature.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Support Python 3.11.

changelog/829.feature.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Support Python 3.11.

changelog/833.feature.rst

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Support Python 3.11.

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ def read_requirements(path: str):
9191
"Programming Language :: Python :: 3.8",
9292
"Programming Language :: Python :: 3.9",
9393
"Programming Language :: Python :: 3.10",
94+
"Programming Language :: Python :: 3.11",
9495
"Topic :: Internet",
9596
"Topic :: Software Development :: Libraries",
9697
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)