Skip to content

Update minimum requirements django 3.2 and min python 3.8 #44

Update minimum requirements django 3.2 and min python 3.8

Update minimum requirements django 3.2 and min python 3.8 #44

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
django-version: ['3.2', '4.2', '5.0']
exclude:
- django-version: '5.0'
python-version: '3.8'
- django-version: '5.0'
python-version: '3.9'
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade Pip
run: pip install -U pip
- name: Install six and setuptools
run: pip install six setuptools
- name: Install Django
run: pip install Django==${{ matrix.django-version }}
- name: Test
run: python test_manage.py test