forked from ninemoreminutes/django-crum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7ff44a
commit 59de1e0
Showing
4 changed files
with
12 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[bumpversion] | ||
commit = True | ||
current_version = 0.8.0 | ||
current_version = 0.7.9 | ||
tag = True | ||
tag_name = {new_version} | ||
|
||
|
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,15 +1,16 @@ | ||
# Django | ||
try: | ||
from django.urls import path | ||
from django.urls import re_path | ||
except ImportError: | ||
from django.conf.urls import url as path | ||
from django.conf.urls import url as re_path | ||
|
||
# Test App | ||
from test_project.test_app.views import api_index, index | ||
from test_project.test_app.views import index, api_index | ||
|
||
|
||
app_name = 'test_app' | ||
|
||
urlpatterns = [ | ||
path('', index, name='index'), | ||
path('api/', api_index, name='api_index'), | ||
] | ||
re_path(r'^$', index, name='index'), | ||
re_path(r'^api/$', api_index, name='api_index'), | ||
] |
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 |
---|---|---|
|
@@ -34,7 +34,6 @@ deps = | |
pytest | ||
pytest-cov | ||
pytest-django | ||
; pytest-flake8 | ||
pytest-runner | ||
Cmake | ||
setuptools | ||
|