Skip to content

Commit

Permalink
chore(ci): Update to add Django 5.0 (alpha) support.
Browse files Browse the repository at this point in the history
Co-authored-by: blulady <[email protected]>
Co-authored-by: rachellcalhoun <[email protected]>
Co-authored-by: Nish8192 <[email protected]>
Co-authored-by: tim-schilling <[email protected]>
  • Loading branch information
5 people authored and pennersr committed Oct 20, 2023
1 parent 4f24552 commit 0e29d46
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
django-version: ['main', '3.2', '4.0', '4.1', '4.2']
django-version: ['main', '3.2', '4.0', '4.1', '4.2', '5.0']
exclude:
- python-version: '3.11'
django-version: '3.2'
Expand All @@ -30,6 +30,15 @@ jobs:
- python-version: '3.7'
django-version: '4.2'

- python-version: '3.7'
django-version: '5.0'

- python-version: '3.8'
django-version: '5.0'

- python-version: '3.9'
django-version: '5.0'

- python-version: '3.7'
django-version: 'main'

Expand Down
2 changes: 2 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ Note worthy changes
Django had no ``JSONField`` support. Now, this field is changed to use the
official ``JSONField()``. Migrations are in place.

- Officially support Django 5.0.


Backwards incompatible changes
------------------------------
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ classifiers =
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Framework :: Django :: 5.0
project_urls =
Documentation = https://docs.allauth.org/en/latest/
Changelog = https://github.com/pennersr/django-allauth/blob/main/ChangeLog.rst
Expand Down
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
envlist =
py{37,38,39,310}-django32
py{38,39,310,311,312}-django{40,41,42}
py{310,311,312}-django{50}
py{310,311,312}-djangomain
docs
isort
Expand All @@ -23,6 +24,7 @@ deps =
django40: Django==4.0.*
django41: Django==4.1.*
django42: Django==4.2.*
django50: Django==5.0a1
djangomain: git+https://github.com/django/django.git@main#egg=django
python3-saml>=1.15.0,<2.0.0
extras =
Expand Down Expand Up @@ -106,3 +108,4 @@ DJANGO =
4.0: django40
4.1: django41
4.2: django42
5.0: django50

0 comments on commit 0e29d46

Please sign in to comment.