Skip to content

Drop support for python 3.7 and 3.8. #69

Drop support for python 3.7 and 3.8.

Drop support for python 3.7 and 3.8. #69

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
linting:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
- uses: psf/black@stable
- name: Flake8
run: |
python -m pip install flake8
flake8 . --max-line-length=88 --extend-ignore=E203 --count --statistics
- name: mypy
run: |
python -m pip install mypy
mypy . --ignore-missing-imports
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip wheel
pip install -r requirements.txt
- name: Run Tests
run: make test