Skip to content

Commit

Permalink
Add support for Django 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchainz authored and francoisfreitag committed Nov 15, 2023
1 parent 50bcacb commit a55feed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,19 @@ jobs:
- dj32
- dj41
- dj42
- dj50
include:
- python-version: '3.10'
tox-environment: djmain
- python-version: '3.11'
tox-environment: djmain
- python-version: '3.12'
tox-environment: djmain
exclude:
- python-version: '3.8'
tox-environment: dj50
- python-version: '3.9'
tox-environment: dj50

env:
COVERALLS_FLAG_NAME: Python ${{ matrix.python-version }} / ${{ matrix.tox-environment }}
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ classifiers = [
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ envlist =
dj32
dj41
dj42
dj50
djmain
mypy
isolated_build = true
Expand All @@ -18,6 +19,7 @@ deps =
dj32: Django>=3.2,<4.0
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<4.3
dj50: Django>=5.0b1,<5.1
djmain: https://github.com/django/django/archive/main.tar.gz
djangorestframework
extras = phonenumberslite
Expand Down

0 comments on commit a55feed

Please sign in to comment.