Skip to content

Commit 0c635fd

Browse files
committed
ENH: Add formal support for Python 3.11
1 parent 67ef09e commit 0c635fd

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,18 @@ jobs:
2121
fail-fast: False
2222
matrix:
2323
os: [ubuntu-latest, macos-latest, windows-latest]
24-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
24+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
2525
special: ['']
2626
include:
27+
- os: ubuntu-20.04
28+
special: ''
29+
python-version: "3.6"
2730
- os: ubuntu-latest
2831
special: '; pre-release'
29-
python-version: "3.10"
32+
python-version: "3.11"
3033
- os: ubuntu-latest
3134
special: '; no-optional'
32-
python-version: "3.10"
35+
python-version: "3.11"
3336

3437
steps:
3538
- uses: actions/checkout@v3

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
:target: https://docs.python.org/3.9/
2222
.. image:: https://img.shields.io/badge/python-3.10-blue.svg
2323
:target: https://docs.python.org/3.10/
24+
.. image:: https://img.shields.io/badge/python-3.11-blue.svg
25+
:target: https://docs.python.org/3.11/
2426

2527
############
2628
AssertionLib

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@
6262
'python-3-8',
6363
'python-3-9',
6464
'python-3-10',
65+
'python-3-11',
6566
],
6667
classifiers=[
6768
'Development Status :: 5 - Production/Stable',
@@ -76,6 +77,7 @@
7677
'Programming Language :: Python :: 3.8',
7778
'Programming Language :: Python :: 3.9',
7879
'Programming Language :: Python :: 3.10',
80+
'Programming Language :: Python :: 3.11',
7981
'Topic :: Software Development :: Libraries',
8082
'Topic :: Software Development :: Testing',
8183
'Typing :: Typed',

0 commit comments

Comments
 (0)