Skip to content

Drop python 2 and django 1.11 support; add django 4.2 #9

Drop python 2 and django 1.11 support; add django 4.2

Drop python 2 and django 1.11 support; add django 4.2 #9

Workflow file for this run

name: Test
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9"]
django-version: ["2.2", "3.2", "4.2"]
include:
- python-version: "3.7"
django-version: "2.2"
- python-version: "3.10"
django-version: "3.2"
- python-version: "3.10"
django-version: "4.2"
- python-version: "3.11"
django-version: "4.2"
name: Django ${{ matrix.django-version }} (Python ${{ matrix.python-version }})
env:
DJANGO: ${{ matrix.django-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python3 -m pip install --upgrade pip
python3 -m pip install tox tox-gh-actions
- name: Test with tox
run: tox