Skip to content

Commit 55e2dac

Browse files
committed
Drop explicit support for python 3.6 as it is end of life
1 parent 83e4b63 commit 55e2dac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
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 ${{ 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-charts-plugin",
8-
version="0.0.5",
8+
version="0.0.6",
99
description="MkDocs plugin to add charts from data",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
@@ -20,10 +20,10 @@
2020
"Operating System :: OS Independent",
2121
"Programming Language :: Python",
2222
"Programming Language :: Python :: 3",
23-
"Programming Language :: Python :: 3.6",
2423
"Programming Language :: Python :: 3.7",
2524
"Programming Language :: Python :: 3.8",
2625
"Programming Language :: Python :: 3.9",
26+
"Programming Language :: Python :: 3.10",
2727
"License :: OSI Approved :: MIT License",
2828
],
2929
install_requires=["mkdocs>=1.1", "pymdown-extensions>=9.1"],

0 commit comments

Comments
 (0)