Drop support for Django 1.11 and for python 2.7
This commit is contained in:
parent
3ee7e0ae98
commit
e3e7c0852a
5 changed files with 13 additions and 7 deletions
|
@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file.
|
||||||
.. contents:: Table of Contents
|
.. contents:: Table of Contents
|
||||||
:depth: 2
|
:depth: 2
|
||||||
|
|
||||||
|
Unreleased
|
||||||
|
==========
|
||||||
|
|
||||||
|
Removed
|
||||||
|
-------
|
||||||
|
* Drop support for Django 1.11 (now deprecated for more than 2 years)
|
||||||
|
* Drop support for python 2.7 (now deprecated for more than 2 years)
|
||||||
|
|
||||||
|
|
||||||
v1.3.1 - 2021-07-03
|
v1.3.1 - 2021-07-03
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@ Features
|
||||||
* Possibility to rename/rewrite attributes per service
|
* Possibility to rename/rewrite attributes per service
|
||||||
* Possibility to require some attribute values per service
|
* Possibility to require some attribute values per service
|
||||||
* Federated mode between multiple CAS
|
* Federated mode between multiple CAS
|
||||||
* Supports Django 1.11, 2.2, 3.1 and 3.2
|
* Supports Django 2.2, 3.1 and 3.2
|
||||||
* Supports Python 3.5+
|
* Supports Python 3.5+
|
||||||
|
|
||||||
Dependencies
|
Dependencies
|
||||||
|
@ -29,7 +29,7 @@ Dependencies
|
||||||
|
|
||||||
``django-cas-server`` depends on the following python packages:
|
``django-cas-server`` depends on the following python packages:
|
||||||
|
|
||||||
* Django >= 1.11 < 3.3
|
* Django >= 2.2 < 3.3
|
||||||
* requests >= 2.4
|
* requests >= 2.4
|
||||||
* requests_futures >= 0.9.5
|
* requests_futures >= 0.9.5
|
||||||
* lxml >= 3.4
|
* lxml >= 3.4
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Django >= 1.11,<3.3
|
Django >= 2.2,<3.3
|
||||||
setuptools>=5.5
|
setuptools>=5.5
|
||||||
requests>=2.4
|
requests>=2.4
|
||||||
requests_futures>=0.9.5
|
requests_futures>=0.9.5
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -31,7 +31,6 @@ if __name__ == '__main__':
|
||||||
'Environment :: Web Environment',
|
'Environment :: Web Environment',
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'Framework :: Django',
|
'Framework :: Django',
|
||||||
'Framework :: Django :: 1.11',
|
|
||||||
'Framework :: Django :: 2.2',
|
'Framework :: Django :: 2.2',
|
||||||
'Framework :: Django :: 3.1',
|
'Framework :: Django :: 3.1',
|
||||||
'Framework :: Django :: 3.2',
|
'Framework :: Django :: 3.2',
|
||||||
|
@ -62,7 +61,7 @@ if __name__ == '__main__':
|
||||||
},
|
},
|
||||||
keywords=['django', 'cas', 'cas3', 'server', 'sso', 'single sign-on', 'authentication', 'auth'],
|
keywords=['django', 'cas', 'cas3', 'server', 'sso', 'single sign-on', 'authentication', 'auth'],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'Django >= 1.11,<3.3', 'requests >= 2.4', 'requests_futures >= 0.9.5',
|
'Django >= 2.2,<3.3', 'requests >= 2.4', 'requests_futures >= 0.9.5',
|
||||||
'lxml >= 3.4', 'six >= 1'
|
'lxml >= 3.4', 'six >= 1'
|
||||||
],
|
],
|
||||||
url="https://github.com/nitmir/django-cas-server",
|
url="https://github.com/nitmir/django-cas-server",
|
||||||
|
|
2
tox.ini
2
tox.ini
|
@ -2,8 +2,6 @@
|
||||||
envlist=
|
envlist=
|
||||||
flake8,
|
flake8,
|
||||||
check_rst,
|
check_rst,
|
||||||
py27-django111,
|
|
||||||
py3-django111,
|
|
||||||
py3-django22,
|
py3-django22,
|
||||||
py3-django31,
|
py3-django31,
|
||||||
py3-django32,
|
py3-django32,
|
||||||
|
|
Loading…
Reference in a new issue