Skip to content

Commit 96fa52b

Browse files
committed
Drop explicit support for python 3.6 as it is end of life
1 parent b6b0d11 commit 96fa52b

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
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
matrix:
1111
os: [ubuntu-latest, macos-latest, windows-latest]
12-
python-version: [3.6, 3.7, 3.8, 3.9]
12+
python-version: [3.7, 3.8, 3.9, "3.10"]
1313
steps:
1414
- uses: actions/checkout@master
1515

.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

setup.py

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

1313
setup(
1414
name="mkdocs-git-revision-date-localized-plugin",
15-
version="0.11",
15+
version="0.11.1",
1616
description="Mkdocs plugin that enables displaying the localized date of the last git modification of a markdown file.",
1717
long_description=LONG_DESCRIPTION,
1818
long_description_content_type="text/markdown",
@@ -25,10 +25,10 @@
2525
python_requires=">=3.6",
2626
classifiers=[
2727
"Programming Language :: Python :: 3",
28-
"Programming Language :: Python :: 3.6",
2928
"Programming Language :: Python :: 3.7",
3029
"Programming Language :: Python :: 3.8",
3130
"Programming Language :: Python :: 3.9",
31+
"Programming Language :: Python :: 3.10",
3232
"License :: OSI Approved :: MIT License",
3333
"Operating System :: OS Independent",
3434
],

0 commit comments

Comments
 (0)