Skip to content

Commit e7a2d8a

Browse files
committed
Drop explicit support for python 3.6 as it is end of life, add 3.10
1 parent 38e00a8 commit e7a2d8a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/unittests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
10-
python-version: [3.6, 3.7, 3.8, 3.9]
10+
python-version: [3.7, 3.8, 3.9, "3.10"]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Setup Python

.github/workflows/unittests_codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
os: [ubuntu-latest, macos-latest, windows-latest]
20-
python-version: [3.6, 3.7, 3.8, 3.9]
20+
python-version: [3.7, 3.8, 3.9, "3.10"]
2121
steps:
2222
- uses: actions/checkout@master
2323
- name: Setup Python ${{ matrix.python-version }}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="mkdocs-git-authors-plugin",
8-
version="0.6.2",
8+
version="0.6.3",
99
description="Mkdocs plugin to display git authors of a page",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
@@ -19,10 +19,10 @@
1919
"Operating System :: OS Independent",
2020
'Programming Language :: Python',
2121
'Programming Language :: Python :: 3',
22-
'Programming Language :: Python :: 3.6',
2322
'Programming Language :: Python :: 3.7',
2423
'Programming Language :: Python :: 3.8',
2524
'Programming Language :: Python :: 3.9',
25+
'Programming Language :: Python :: 3.10',
2626
'Programming Language :: Python :: 3 :: Only',
2727
"License :: OSI Approved :: MIT License",
2828
'Topic :: Documentation',

0 commit comments

Comments
 (0)