Skip to content

Commit d62beec

Browse files
Added python 3.11 support (#325)
* Added python 3.11 support * Updated classifiers
1 parent e4f8ed5 commit d62beec

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-20.04, macos-11, windows-2019]
19-
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3.7", "pypy3.8", "pypy3.9", ]
19+
python-version: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.7", "pypy3.8", "pypy3.9", ]
2020
runs-on: ${{ matrix.os }}
2121
steps:
2222
- name: Check out repository

pypandoc/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
'Programming Language :: Python :: 3.8',
4343
'Programming Language :: Python :: 3.9',
4444
'Programming Language :: Python :: 3.10',
45+
'Programming Language :: Python :: 3.11',
4546
'Programming Language :: Python :: Implementation :: CPython',
4647
'Programming Language :: Python :: Implementation :: PyPy'
4748
]

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ classifiers = [
2222
'Programming Language :: Python :: 3.8',
2323
'Programming Language :: Python :: 3.9',
2424
'Programming Language :: Python :: 3.10',
25+
'Programming Language :: Python :: 3.11',
2526
'Programming Language :: Python :: Implementation :: CPython',
2627
'Programming Language :: Python :: Implementation :: PyPy'
2728
]

0 commit comments

Comments
 (0)