Skip to content

Drop support for Python 3.7 and 3.8 #160

Drop support for Python 3.7 and 3.8

Drop support for Python 3.7 and 3.8 #160

Workflow file for this run

name: mypy
on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
env:
FORCE_COLOR: 1
TERM: xterm-256color # needed for FORCE_COLOR to work on mypy on Ubuntu, see https://github.com/python/mypy/issues/13817
jobs:
mypy:
name: Check code with mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
cache: "pip"
cache-dependency-path: "pyproject.toml"
python-version: "3.11"
- run: pip install -e .[dev]
- run: pip freeze --all
- run: mypy