-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #233 from mwigh/azuread-v2
Handle scope and also removing resource when VERSION=v2.0
- Loading branch information
Showing
5 changed files
with
37 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
Adding imports here will break setup.py | ||
""" | ||
|
||
__version__ = '1.9.5' | ||
__version__ = '1.9.6' |
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,6 +1,6 @@ | ||
[tool.poetry] | ||
name = 'django-auth-adfs' | ||
version = "1.9.5" # Remember to also change __init__.py version | ||
version = "1.9.6" # Remember to also change __init__.py version | ||
description = 'A Django authentication backend for Microsoft ADFS and AzureAD' | ||
authors = ['Joris Beckers <[email protected]>'] | ||
maintainers = ['Jonas Krüger Svensson <[email protected]>', 'Sondre Lillebø Gundersen <[email protected]>'] | ||
|
@@ -23,7 +23,6 @@ classifiers = [ | |
'License :: OSI Approved :: BSD License', | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
|
@@ -36,7 +35,7 @@ classifiers = [ | |
] | ||
|
||
[tool.poetry.dependencies] | ||
python = '^3.6' | ||
python = '^3.7' | ||
django = [ | ||
{ version = '^2.2 || ^3', python = '<=3.7' }, | ||
{ version = '^2.2 || ^3 || ^4', python = '>=3.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