Skip to content

bump version and support python 3.12 and 3.13 #62

bump version and support python 3.12 and 3.13

bump version and support python 3.12 and 3.13 #62

Workflow file for this run

name: pytest
on: [push, pull_request, workflow_dispatch]
jobs:
run:
name: Run unit tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
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: Generate coverage report
run: |
pip install -r tests/test_requirements.txt
pip install .
pytest --cov=mkdocs_charts_plugin