django-auth-adfs 1.15.0__tar.gz → 1.15.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,9 @@
1
- Metadata-Version: 2.3
1
+ Metadata-Version: 2.4
2
2
  Name: django-auth-adfs
3
- Version: 1.15.0
3
+ Version: 1.15.1
4
4
  Summary: A Django authentication backend for Microsoft ADFS and AzureAD
5
5
  License: BSD-1-Clause
6
+ License-File: LICENSE
6
7
  Keywords: django,authentication,adfs,azure,ad,oauth2
7
8
  Author: Joris Beckers
8
9
  Author-email: joris.beckers@gmail.com
@@ -14,6 +15,7 @@ Classifier: Environment :: Web Environment
14
15
  Classifier: Framework :: Django :: 4.2
15
16
  Classifier: Framework :: Django :: 5.0
16
17
  Classifier: Framework :: Django :: 5.1
18
+ Classifier: Framework :: Django :: 5.2
17
19
  Classifier: Intended Audience :: Developers
18
20
  Classifier: Intended Audience :: End Users/Desktop
19
21
  Classifier: License :: OSI Approved
@@ -26,6 +28,7 @@ Classifier: Programming Language :: Python :: 3.10
26
28
  Classifier: Programming Language :: Python :: 3.11
27
29
  Classifier: Programming Language :: Python :: 3.12
28
30
  Classifier: Programming Language :: Python :: 3.13
31
+ Classifier: Programming Language :: Python :: 3.14
29
32
  Classifier: Topic :: Internet :: WWW/HTTP
30
33
  Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
31
34
  Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
@@ -33,7 +36,7 @@ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
33
36
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
34
37
  Requires-Dist: PyJWT
35
38
  Requires-Dist: cryptography
36
- Requires-Dist: django (>=4.2,<5.0) ; python_version >= "3.9" and python_version < "3.10"
39
+ Requires-Dist: django (>=4.2,<5.0) ; python_version == "3.9"
37
40
  Requires-Dist: django (>=4.2,<6) ; python_version >= "3.10"
38
41
  Requires-Dist: requests
39
42
  Requires-Dist: urllib3
@@ -54,8 +57,8 @@ ADFS Authentication for Django
54
57
  :target: https://pypi.python.org/pypi/django-auth-adfs#downloads
55
58
  .. image:: https://img.shields.io/pypi/djversions/django-auth-adfs.svg
56
59
  :target: https://pypi.python.org/pypi/django-auth-adfs
57
- .. image:: https://codecov.io/github/snok/django-auth-adfs/coverage.svg?branch=master
58
- :target: https://codecov.io/github/snok/django-auth-adfs?branch=master
60
+ .. image:: https://codecov.io/github/snok/django-auth-adfs/coverage.svg?branch=main
61
+ :target: https://codecov.io/github/snok/django-auth-adfs?branch=main
59
62
 
60
63
  A Django authentication backend for Microsoft ADFS and Azure AD
61
64
 
@@ -10,8 +10,8 @@ ADFS Authentication for Django
10
10
  :target: https://pypi.python.org/pypi/django-auth-adfs#downloads
11
11
  .. image:: https://img.shields.io/pypi/djversions/django-auth-adfs.svg
12
12
  :target: https://pypi.python.org/pypi/django-auth-adfs
13
- .. image:: https://codecov.io/github/snok/django-auth-adfs/coverage.svg?branch=master
14
- :target: https://codecov.io/github/snok/django-auth-adfs?branch=master
13
+ .. image:: https://codecov.io/github/snok/django-auth-adfs/coverage.svg?branch=main
14
+ :target: https://codecov.io/github/snok/django-auth-adfs?branch=main
15
15
 
16
16
  A Django authentication backend for Microsoft ADFS and Azure AD
17
17
 
@@ -4,4 +4,4 @@ This file is imported by setup.py
4
4
  Adding imports here will break setup.py
5
5
  """
6
6
 
7
- __version__ = '1.15.0'
7
+ __version__ = '1.15.1'
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = 'django-auth-adfs'
3
- version = "1.15.0" # Remember to also change __init__.py version
3
+ version = "1.15.1" # 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>']
@@ -15,6 +15,7 @@ classifiers = [
15
15
  'Framework :: Django :: 4.2',
16
16
  'Framework :: Django :: 5.0',
17
17
  'Framework :: Django :: 5.1',
18
+ 'Framework :: Django :: 5.2',
18
19
  'Intended Audience :: Developers',
19
20
  'Intended Audience :: End Users/Desktop',
20
21
  'Operating System :: OS Independent',