-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: add compatibility with Quince release (#52)
BREAKING CHANGE: add compatibility with quince release * chore: update constraints & upgrade requirements * fix: modify deprecated method * fix: was mandatory to send any get_response * chore: update github-actions * docs: update README for showing quince support
- Loading branch information
Showing
16 changed files
with
43 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
""" | ||
eox_theming management urls | ||
""" | ||
from django.conf.urls import url | ||
from django.urls import re_path | ||
|
||
from eox_theming.management import views | ||
|
||
urlpatterns = [ | ||
url(r'^eox-info$', views.info_view), | ||
re_path(r'^eox-info$', views.info_view), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
""" | ||
eox_theming URL Configuration | ||
""" | ||
from django.conf.urls import include, url | ||
from django.urls import include, re_path | ||
|
||
urlpatterns = [ | ||
url(r'', include(('eox_theming.management.urls', 'eox_theming'), namespace='eox-theming-management')), | ||
re_path(r'', include(('eox_theming.management.urls', 'eox_theming'), namespace='eox-theming-management')), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,22 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.8 | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# make upgrade | ||
# | ||
asgiref==3.7.2 | ||
# via django | ||
django==3.2.23 | ||
django==4.2.9 | ||
# via | ||
# -c requirements/constraints.txt | ||
# -r requirements/base.in | ||
eox-tenant==10.0.0 | ||
# via | ||
# -c requirements/constraints.txt | ||
# -r requirements/base.in | ||
pytz==2022.7.1 | ||
# via | ||
# -c requirements/constraints.txt | ||
# django | ||
six==1.16.0 | ||
# via -r requirements/base.in | ||
sqlparse==0.4.4 | ||
# via django | ||
typing-extensions==4.8.0 | ||
typing-extensions==4.9.0 | ||
# via asgiref |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Django==4.2.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters