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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-auth-adfs
3
- Version: 1.13.0
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 (>=3,<5) ; python_version >= "3.8" and python_version < "3.10"
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
@@ -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.13.0'
7
+ __version__ = '1.14.0'
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = 'django-auth-adfs'
3
- version = "1.13.0" # Remember to also change __init__.py version
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 = '^3 || ^4', python = '>=3.8 <3.10' },
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 = '*'