django-auth-adfs 1.12.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,13 +1,12 @@
1
1
  Copyright (c) 2016, Joris Beckers
2
- All rights reserved.
3
2
 
4
3
  Redistribution and use in source and binary forms, with or without modification,
5
4
  are permitted provided that the following conditions are met:
6
5
 
7
- - Redistributions of source code must retain the above copyright notice, this
6
+ 1. Redistributions of source code must retain the above copyright notice, this
8
7
  list of conditions and the following disclaimer.
9
8
 
10
- - Redistributions in binary form must reproduce the above copyright notice, this
9
+ 2. Redistributions in binary form must reproduce the above copyright notice, this
11
10
  list of conditions and the following disclaimer in the documentation and/or
12
11
  other materials provided with the distribution.
13
12
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: django-auth-adfs
3
- Version: 1.12.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
@@ -34,12 +31,12 @@ Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
34
31
  Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
35
32
  Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
36
33
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
37
- Requires-Dist: PyJWT (>=2.4.0,<3.0.0)
38
- Requires-Dist: cryptography (>=1.7,<42.0)
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"
41
- Requires-Dist: requests (>=1,<3)
42
- Requires-Dist: urllib3 (>=1.26.0,<2.0.0)
34
+ Requires-Dist: PyJWT
35
+ Requires-Dist: cryptography
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"
38
+ Requires-Dist: requests
39
+ Requires-Dist: urllib3
43
40
  Project-URL: Documentation, https://django-auth-adfs.readthedocs.io/en/latest
44
41
  Project-URL: Repository, https://github.com/snok/django-auth-adfs
45
42
  Description-Content-Type: text/x-rst
@@ -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.12.0'
7
+ __version__ = '1.14.0'
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = 'django-auth-adfs'
3
- version = "1.12.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,20 +36,20 @@ 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
- requests = '^1 || ^2'
46
- urllib3 = '^1.26.0'
47
- cryptography = '>=1.7,<42.0'
48
- PyJWT = "^2.4.0"
42
+ requests = '*'
43
+ urllib3 = '*'
44
+ cryptography = '*'
45
+ PyJWT = "*"
49
46
 
50
47
  [tool.poetry.dev-dependencies]
51
48
  responses = '*'
52
49
  mock = '*'
53
50
  coverage = '*'
54
51
  djangorestframework = '*'
55
- django-filter = "^2.4.0"
52
+ django-filter = "*"
56
53
 
57
54
  [build-system]
58
55
  requires = ["poetry-core>=1.0.0"]