Skip to content

Commit 561baf8

Browse files
authored
feat: add support for Django 4.2 and Python 3.12 (#15)
1 parent c493ebc commit 561baf8

File tree

4 files changed

+175
-158
lines changed

4 files changed

+175
-158
lines changed

README.rst

+2
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ How to Contribute
266266
Release Log
267267
===========
268268

269+
3.0.0: Add support for Django 4.2 and Python 3.12 (BREAKING CHANGES)
270+
269271
2.3.0: Multiple updates from Tesorio across the years
270272

271273
* Change acs redirect to sso login page

django_saml2_auth/urls.py

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
from django.conf.urls import url
1+
from django.urls import path
2+
23
from . import views
34

4-
app_name = 'django_saml2_auth'
5+
app_name = "django_saml2_auth"
56

67
urlpatterns = [
7-
url(r'^acs/$', views.acs, name="acs"),
8-
url(r'^welcome/$', views.welcome, name="welcome"),
9-
url(r'^denied/$', views.denied, name="denied"),
8+
path("acs/", views.acs, name="acs"),
9+
path("welcome/", views.welcome, name="welcome"),
10+
path("denied/", views.denied, name="denied"),
1011
]

0 commit comments

Comments
 (0)