Skip to content

Commit

Permalink
Support Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mgedmin committed Oct 30, 2022
1 parent d65f53b commit 279bd38
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "pypy-3.7"

steps:
Expand Down
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Changelog
0.11.0 (unreleased)
~~~~~~~~~~~~~~~~~~~

- Add support for Python 3.8, 3.9, and 3.10.
- Add support for Python 3.8, 3.9, 3.10, and 3.11.

- Drop support for Python 2.7, 3.5 and 3.6.

Expand Down
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ environment:
- PYTHON: "C:\\Python38"
- PYTHON: "C:\\Python39"
- PYTHON: "C:\\Python310"
- PYTHON: "C:\\Python311"

init:
- "echo %PYTHON%"
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

setup(
name='mgp2pdf',
version='0.10.3.dev0',
version='0.11.0.dev0',
author='Marius Gedminas',
author_email='marius@gedmin.as',
url='https://github.com/mgedmin/mgp2pdf/',
Expand All @@ -29,6 +29,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py37,py38,py39,py310,pypy3
py37,py38,py39,py310,py311,pypy3

[testenv]
deps =
Expand Down

0 comments on commit 279bd38

Please sign in to comment.