diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e4c475c..e48f6b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,12 +8,16 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.8', '3.9', '3.10'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] django-version: ['3.2', '4.2', '5.0', '5.1'] os: [ - ubuntu-latest, + ubuntu-latest ] - + exclude: + - django-version: '5.0' + python-version: 3.9 + - django-version: '5.1' + python-version: 3.9 steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} @@ -23,7 +27,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install django==${{ matrix.django-version }} coverage + pip install django~=${{ matrix.django-version }} coverage python setup.py install - name: Run coverage