-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Django 4.2 support added for python 3.9 to 3.12 & for drf 3.13 (#349)
* unit test fixed * testserialisers file txt added in the gitignore * testserialisers file txt added in the gitignore * test txt files deleted * Update tests_app/tests/functional/routers/nested_router_mixin/views.py * support for python 3.9 added * test files deleted * python 3.9 and 3.10 support added * support added for python 3.11 * support for python 3.12 added * python 3.10-3.12 added in github/workflows * python 3.10-3.12 added in github/workflows * remove python versions from travis.yml * django 4.2 support added for python 3.9 to 3.12 and for drf 3.14 * readme updated --------- Co-authored-by: Mehraz Hossian Rumman <rumman@adfinix.com> Co-authored-by: Asif Saif Uddin <auvipy@gmail.com>
- Loading branch information
1 parent
09512be
commit c40977e
Showing
8 changed files
with
21 additions
and
14 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
4 changes: 2 additions & 2 deletions
4
tests_app/tests/functional/_examples/etags/remove_etag_gzip_postfix/urls.py
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 @@ | ||
from django.conf.urls import url | ||
from django.urls import re_path | ||
|
||
from .views import MyView | ||
|
||
|
||
urlpatterns = [ | ||
url(r'^remove-etag-gzip-postfix/$', MyView.as_view()), | ||
re_path(r'^remove-etag-gzip-postfix/$', MyView.as_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from django.conf.urls import url | ||
from django.urls import re_path | ||
|
||
from .views import HelloView | ||
|
||
|
||
urlpatterns = [ | ||
url(r'^hello/$', HelloView.as_view(), name='hello'), | ||
re_path(r'^hello/$', HelloView.as_view(), name='hello'), | ||
] |
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