Skip to content

Commit

Permalink
Django 5.0 supports Python 3.10, 3.11, and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Dec 5, 2023
1 parent fea5e54 commit 21cf95e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
django-version: [3.2, 4.1, 4.2, 5.0rc1]
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
django-version: [3.2, 4.1, 4.2, "5.0"]
exclude:
# excludes list
- python-version: 3.11
Expand All @@ -32,6 +32,10 @@ jobs:
django-version: 4.1
- python-version: 3.12
django-version: 4.2
- python-version: 3.8
django-version: 5.0
- python-version: 3.9
django-version: 5.0

steps:
- uses: actions/checkout@v4
Expand All @@ -46,7 +50,7 @@ jobs:
pip install --upgrade coveralls ruff
pip install "django~=${{ matrix.django-version }}"
- name: Run ruff
run: ruff .
run: ruff --output-format=github
- name: Run test
run: coverage run --source=ipware manage.py test
- name: Coveralls
Expand Down

0 comments on commit 21cf95e

Please sign in to comment.