Skip to content

Commit 64e15d5

Browse files
authored
Support Python 3.11 and drop 3.6 and 3.7 (#65)
1 parent 4ae8e58 commit 64e15d5

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
12-
python-version: ["3.7", "3.8", "3.9", "3.10"]
12+
python-version: ["3.8", "3.9", "3.10", "3.11"]
1313
include:
1414
- os: "ubuntu-20.04"
15-
python-version: "3.6"
15+
python-version: "3.8"
1616

1717
steps:
1818
- uses: actions/checkout@v3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
0. Prerequisites
1010

11-
* Python >= 3.6
11+
* Python >= 3.8
1212
* MkDocs >= 0.17
1313

1414
1. Install the package with pip:

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def read(fname: str):
1818
author='Manu Zhang',
1919
author_email='owenzhang1990@gmail.com',
2020
license='MIT',
21-
python_requires='>=3.6',
21+
python_requires='>=3.8',
2222
install_requires=[
2323
'mkdocs>=0.17',
2424
'Markdown',
@@ -32,11 +32,10 @@ def read(fname: str):
3232
'License :: OSI Approved :: MIT License',
3333
'Programming Language :: Python',
3434
'Programming Language :: Python :: 3 :: Only',
35-
'Programming Language :: Python :: 3.6',
36-
'Programming Language :: Python :: 3.7',
3735
'Programming Language :: Python :: 3.8',
3836
'Programming Language :: Python :: 3.9',
3937
'Programming Language :: Python :: 3.10',
38+
'Programming Language :: Python :: 3.11',
4039
],
4140
packages=find_packages(exclude=['*.tests']),
4241
entry_points={

0 commit comments

Comments
 (0)