Skip to content

Commit

Permalink
Add support for Python 3.11 (#412)
Browse files Browse the repository at this point in the history
Python 3.11 was released on 2022-10-24.
  • Loading branch information
hemberger committed Dec 13, 2022
1 parent 1fdd0f6 commit 3f0ffc9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3.8"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.8"]

steps:
- uses: actions/checkout@v3
Expand Down
5 changes: 5 additions & 0 deletions docs/ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ Release Notes
Version 1.3 (in development)
============================

Main changes
------------

* Added support for Python 3.11.

Version 1.2
===========

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ def read(fname, URL, URLImage):
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only',
],

Expand Down

0 comments on commit 3f0ffc9

Please sign in to comment.