Skip to content

python 3.12+ uses importlib.metadata instead of pkg_resources #8

python 3.12+ uses importlib.metadata instead of pkg_resources

python 3.12+ uses importlib.metadata instead of pkg_resources #8

Workflow file for this run

name: Django CI
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: [3.8, 3.9, "3.10" ]
django-version: [3.2, 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 }}
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
python -m pip install "django ==${{ matrix.django-version }}"
make init
- name: Run Tests
run: |
make test