🤝 Use packaging.version where available (#210) #145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-20.04 | |
env: | |
PYTHONDONTWRITEBYTECODE: true | |
PYTHONPATH: test_project | |
strategy: | |
# By default, GitHub will maximize the number of jobs run in parallel | |
# depending on the available runners on GitHub-hosted virtual machines. | |
# max-parallel: 8 | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.6" | |
- "3.7" | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
django-version: | |
- "2.2" # LTS | |
- "3.2" # LTS | |
- "4.1" | |
- "4.2" # LTS | |
drf-version: | |
- "" | |
- "3.14" # only testing latest version for now | |
exclude: | |
# DRF 3.14 is not compatible with Django 2.x | |
- django-version: "2.2" | |
drf-version: "3.14" | |
# Python 3.9 is compatible with Django 3.1+ | |
- python-version: "3.9" | |
django-version: "2.2" | |
# Python 3.10 is compatible with Django 3.2+ | |
- python-version: "3.10" | |
django-version: "2.2" | |
# Python 3.11 is compatible with Django 4.0+ | |
- python-version: "3.11" | |
django-version: "2.2" | |
- python-version: "3.11" | |
django-version: "3.2" | |
# Python 3.12 is compatible with Django 4.0+ | |
- python-version: "3.12" | |
django-version: "2.2" | |
- python-version: "3.12" | |
django-version: "3.2" | |
# Django 4.0 is compatible with Python 3.8+ | |
- python-version: "3.6" | |
django-version: "4.0" | |
- python-version: "3.7" | |
django-version: "4.0" | |
# Django 4.1 is compatible with Python 3.8+ | |
- python-version: "3.6" | |
django-version: "4.1" | |
- python-version: "3.7" | |
django-version: "4.1" | |
# Django 4.2 is compatible with Python 3.8+ | |
- python-version: "3.6" | |
django-version: "4.2" | |
- python-version: "3.7" | |
django-version: "4.2" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
cache-dependency-path: '**/setup.cfg' | |
- name: Install Django ${{ matrix.django-version }} | |
if: ${{ matrix.drf-version == '' }} | |
run: | | |
python -m pip install "Django~=${{ matrix.django-version }}.0" | |
- name: Install DRF ${{ matrix.drf-version }} and Django ${{ matrix.django-version }} | |
if: ${{ matrix.drf-version }} | |
run: | | |
python -m pip install pytz "djangorestframework~=${{ matrix.drf-version }}.0" "Django~=${{ matrix.django-version }}.0" | |
- name: Install dependencies | |
run: | | |
python -m pip install -e ".[test]" | |
- run: | | |
pytest . |