Skip to content

Commit e326109

Browse files
authored
bump version and support python 3.12 and 3.13
1 parent 73652ec commit e326109

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/unittests.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,13 @@ jobs:
77
strategy:
88
matrix:
99
os: [ubuntu-latest, macos-latest, windows-latest]
10-
python-version: [3.8, 3.9, "3.10", "3.11"]
10+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
1111
steps:
1212
- uses: actions/checkout@master
1313
- name: Setup Python ${{ matrix.python-version }}
1414
uses: actions/setup-python@master
1515
with:
1616
python-version: ${{ matrix.python-version }}
17-
- name: Static code checking with pyflakes
18-
run: |
19-
pip install pyflakes
20-
pyflakes mkdocs_charts_plugin
2117
- name: Generate coverage report
2218
run: |
2319
pip install -r tests/test_requirements.txt

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="mkdocs-charts-plugin",
8-
version="0.0.11",
8+
version="0.0.12",
99
description="MkDocs plugin to add charts from data",
1010
long_description=long_description,
1111
long_description_content_type="text/markdown",
@@ -24,6 +24,8 @@
2424
"Programming Language :: Python :: 3.9",
2525
"Programming Language :: Python :: 3.10",
2626
"Programming Language :: Python :: 3.11",
27+
"Programming Language :: Python :: 3.12",
28+
"Programming Language :: Python :: 3.13",
2729
"License :: OSI Approved :: MIT License",
2830
],
2931
install_requires=["mkdocs>=1.1", "pymdown-extensions>=9.2"],

0 commit comments

Comments
 (0)