Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade tox tox-gh-actions
python -m pip install --upgrade tox tox-gh-actions django

- name: Tox tests
run: |
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ Michael Howitz
Paul Dekkers
Paul Oswald
Pavel Tvrdík
Peter Carnesciali
Rodney Richardson
Rustem Saiargaliev
Sandro Rodrigues
Expand Down
6 changes: 5 additions & 1 deletion oauth2_provider/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import django


__version__ = "1.5.0"

default_app_config = "oauth2_provider.apps.DOTConfig"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Contributor Author

@pcarn pcarn Nov 27, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if django.VERSION < (3, 2):
default_app_config = "oauth2_provider.apps.DOTConfig"