Skip to content

Add support for Python 3.13, drop 3.7 #70

Add support for Python 3.13, drop 3.7

Add support for Python 3.13, drop 3.7 #70

Workflow file for this run

name: Tox
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
name: Python ${{ matrix.python-version }} tests
steps:
- uses: actions/checkout@v2
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install dependencies
run: pip install -r requirements-dev.txt
- name: Test with pytest
run: tox