Skip to content

Commit 0735f75

Browse files
committed
feat: add Python 3.11 support
1 parent a70be4e commit 0735f75

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

Diff for: .github/workflows/testing.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.10", 3.9, 3.8, 3.7, pypy-3.9]
15+
python-version: ["3.11", "3.10", 3.9, 3.8, 3.7, pypy-3.9]
1616
steps:
1717
- uses: actions/checkout@v3
1818
- name: Set up Python

Diff for: CHANGES.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Changelog
66
2.0.1 (unreleased)
77
------------------
88

9-
- Add official support for python 3.10. [gforcada]
9+
- Add official support for python 3.10 and 3.11. [gforcada]
1010

1111
- Update options handling. [gforcada]
1212

Diff for: README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ to ignore a custom list of builtins::
8383

8484
Requirements
8585
------------
86-
- Python 3.7, 3.8, 3.9, 3.10 and pypy3
86+
- Python 3.7, 3.8, 3.9, 3.10, 3.11, and pypy3
8787
- flake8
8888

8989
License

Diff for: setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ def read_file(filename):
3535
'Programming Language :: Python :: 3.8',
3636
'Programming Language :: Python :: 3.9',
3737
'Programming Language :: Python :: 3.10',
38+
'Programming Language :: Python :: 3.11',
3839
'Programming Language :: Python :: Implementation :: CPython',
3940
'Programming Language :: Python :: Implementation :: PyPy',
4041
'Topic :: Software Development',

0 commit comments

Comments
 (0)