Skip to content

Commit eb13c82

Browse files
Merge pull request #117 from MiWeiss/deprecate-py36
Deprecate 3.6 and add 3.11
2 parents 472001a + 9f80c26 commit eb13c82

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
strategy:
3131
matrix:
3232
os: [macos-latest, windows-latest, ubuntu-latest]
33-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
33+
python-version: [3.7, 3.8, 3.9, "3.10", "3.11.0-rc.1"]
3434

3535
steps:
3636
- uses: actions/checkout@v2

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ def readme():
3535
entry_points=dict(console_scripts=["docstr-coverage=docstr_coverage.cli:execute"]),
3636
classifiers=[
3737
"Programming Language :: Python :: 3",
38+
"Programming Language :: Python :: 3.7",
39+
"Programming Language :: Python :: 3.8",
40+
"Programming Language :: Python :: 3.9",
41+
"Programming Language :: Python :: 3.10",
42+
"Programming Language :: Python :: 3.11",
3843
"License :: OSI Approved :: MIT License",
3944
"Operating System :: OS Independent",
4045
"Topic :: Documentation",

0 commit comments

Comments
 (0)