Skip to content

remove dependency on deprecated pkg_resources #24

remove dependency on deprecated pkg_resources

remove dependency on deprecated pkg_resources #24

Workflow file for this run

name: Tests and Checks
on: [push, pull_request, workflow_dispatch]
jobs:
build:
name: Run checks & tests
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Run ruff
uses: astral-sh/ruff-action@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U --upgrade-strategy=eager --pre -e .[test]
- name: Run tests
run: |
pytest -v