django-auth-adfs 1.13.0__tar.gz → 1.14.0__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/PKG-INFO +3 -6
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/__init__.py +1 -1
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/pyproject.toml +3 -6
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/LICENSE +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/README.rst +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/backend.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/config.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/drf-urls.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/drf_urls.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/exceptions.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/middleware.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/rest_framework.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/signals.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/templates/django_auth_adfs/login_failed.html +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/urls.py +0 -0
- {django_auth_adfs-1.13.0 → django_auth_adfs-1.14.0}/django_auth_adfs/views.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: django-auth-adfs
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.14.0
|
4
4
|
Summary: A Django authentication backend for Microsoft ADFS and AzureAD
|
5
5
|
Home-page: https://github.com/snok/django-auth-adfs
|
6
6
|
License: BSD-1-Clause
|
@@ -12,9 +12,6 @@ Maintainer-email: jonas-ks@hotmail.com
|
|
12
12
|
Requires-Python: >=3.8,<4.0
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
14
14
|
Classifier: Environment :: Web Environment
|
15
|
-
Classifier: Framework :: Django :: 3.2
|
16
|
-
Classifier: Framework :: Django :: 4.0
|
17
|
-
Classifier: Framework :: Django :: 4.1
|
18
15
|
Classifier: Framework :: Django :: 4.2
|
19
16
|
Classifier: Framework :: Django :: 5.0
|
20
17
|
Classifier: Intended Audience :: Developers
|
@@ -36,8 +33,8 @@ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
36
33
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
37
34
|
Requires-Dist: PyJWT
|
38
35
|
Requires-Dist: cryptography
|
39
|
-
Requires-Dist: django (>=
|
40
|
-
Requires-Dist: django (>=4,<6) ; python_version >= "3.10"
|
36
|
+
Requires-Dist: django (>=4.2,<5.0) ; python_version >= "3.8" and python_version < "3.10"
|
37
|
+
Requires-Dist: django (>=4.2,<6) ; python_version >= "3.10"
|
41
38
|
Requires-Dist: requests
|
42
39
|
Requires-Dist: urllib3
|
43
40
|
Project-URL: Documentation, https://django-auth-adfs.readthedocs.io/en/latest
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[tool.poetry]
|
2
2
|
name = 'django-auth-adfs'
|
3
|
-
version = "1.
|
3
|
+
version = "1.14.0" # Remember to also change __init__.py version
|
4
4
|
description = 'A Django authentication backend for Microsoft ADFS and AzureAD'
|
5
5
|
authors = ['Joris Beckers <joris.beckers@gmail.com>']
|
6
6
|
maintainers = ['Jonas Krüger Svensson <jonas-ks@hotmail.com>', 'Sondre Lillebø Gundersen <sondrelg@live.no>']
|
@@ -12,9 +12,6 @@ keywords = ['django', 'authentication', 'adfs', 'azure', 'ad', 'oauth2']
|
|
12
12
|
readme = 'README.rst'
|
13
13
|
classifiers = [
|
14
14
|
'Environment :: Web Environment',
|
15
|
-
'Framework :: Django :: 3.2',
|
16
|
-
'Framework :: Django :: 4.0',
|
17
|
-
'Framework :: Django :: 4.1',
|
18
15
|
'Framework :: Django :: 4.2',
|
19
16
|
'Framework :: Django :: 5.0',
|
20
17
|
'Intended Audience :: Developers',
|
@@ -39,8 +36,8 @@ classifiers = [
|
|
39
36
|
[tool.poetry.dependencies]
|
40
37
|
python = '^3.8'
|
41
38
|
django = [
|
42
|
-
{ version = '^
|
43
|
-
{ version = '^4 || ^5', python = '>=3.10' },
|
39
|
+
{ version = '^4.2', python = '>=3.8 <3.10' },
|
40
|
+
{ version = '^4.2 || ^5', python = '>=3.10' },
|
44
41
|
]
|
45
42
|
requests = '*'
|
46
43
|
urllib3 = '*'
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|