Skip to content

Commit

Permalink
bump version and support python 3.12 and 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
timvink authored Oct 22, 2024
1 parent 73652ec commit e326109
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,13 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10", "3.11"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@master
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Static code checking with pyflakes
run: |
pip install pyflakes
pyflakes mkdocs_charts_plugin
- name: Generate coverage report
run: |
pip install -r tests/test_requirements.txt
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="mkdocs-charts-plugin",
version="0.0.11",
version="0.0.12",
description="MkDocs plugin to add charts from data",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -24,6 +24,8 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
],
install_requires=["mkdocs>=1.1", "pymdown-extensions>=9.2"],
Expand Down

0 comments on commit e326109

Please sign in to comment.