Drop support for Django 1.11 and for python 2.7

This commit is contained in:
Valentin Samir 2022-10-16 20:41:15 +02:00
parent 3ee7e0ae98
commit e3e7c0852a
5 changed files with 13 additions and 7 deletions

View file

@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file.
.. contents:: Table of Contents
: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
===================

View file

@ -21,7 +21,7 @@ Features
* Possibility to rename/rewrite attributes per service
* Possibility to require some attribute values per service
* 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+
Dependencies
@ -29,7 +29,7 @@ Dependencies
``django-cas-server`` depends on the following python packages:
* Django >= 1.11 < 3.3
* Django >= 2.2 < 3.3
* requests >= 2.4
* requests_futures >= 0.9.5
* lxml >= 3.4

View file

@ -1,4 +1,4 @@
Django >= 1.11,<3.3
Django >= 2.2,<3.3
setuptools>=5.5
requests>=2.4
requests_futures>=0.9.5

View file

@ -31,7 +31,6 @@ if __name__ == '__main__':
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
@ -62,7 +61,7 @@ if __name__ == '__main__':
},
keywords=['django', 'cas', 'cas3', 'server', 'sso', 'single sign-on', 'authentication', 'auth'],
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'
],
url="https://github.com/nitmir/django-cas-server",

View file

@ -2,8 +2,6 @@
envlist=
flake8,
check_rst,
py27-django111,
py3-django111,
py3-django22,
py3-django31,
py3-django32,