Skip to content

chore: remove support of python 3.9 due to EOL #453

chore: remove support of python 3.9 due to EOL

chore: remove support of python 3.9 due to EOL #453

Workflow file for this run

name: "Unittests"
on:
pull_request:
push:
branches:
- main
jobs:
pytest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v5
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run the Unit Tests via Tox
run: |
tox -e tests