Drop Python 3.6 support

This commit is contained in:
johnthagen 2022-08-04 09:22:28 -04:00
parent a6975d9669
commit 8c74a77ebe
5 changed files with 11 additions and 11 deletions

View file

@ -5,17 +5,19 @@ This document describes changes between past releases. For information about
future releases, check `milestones`_ and :doc:`/about/vision`. future releases, check `milestones`_ and :doc:`/about/vision`.
2.3 (unreleased) 2.4 (Unreleased)
----------------
- Drop support for Python 3.6
2.3 (2022-01-11)
---------------- ----------------
- Drop Django 3.0 support - Drop Django 3.0 support
- Add Django 3.2 support - Add Django 3.2 support
- Add support for Python 3.10 - Add support for Python 3.10
- Add support for Django 4.0 - Add support for Django 4.0
2.2 (unreleased)
----------------
- Remove support for Python 3.5 and Django 1.11 - Remove support for Python 3.5 and Django 1.11
- Add support for Python 3.9 and Django 3.1 - Add support for Python 3.9 and Django 3.1
- Remove old urls syntax and adopt the new one - Remove old urls syntax and adopt the new one

View file

@ -12,8 +12,8 @@ Install
Requirements Requirements
************ ************
`django-downloadview` has been tested with `Python`_ 3.6, 3.7 and 3.8. Other `django-downloadview` has been tested with `Python`_ 3.7, 3.8, 3.9 and 3.10.
versions may work, but they are not part of the test suite at the moment. Other versions may work, but they are not part of the test suite at the moment.
Installing `django-downloadview` will automatically trigger the installation of Installing `django-downloadview` will automatically trigger the installation of
the following requirements: the following requirements:

View file

@ -31,7 +31,7 @@ Deploy the demo
System requirements: System requirements:
* `Python`_ version 3.6+, available as ``python`` command. * `Python`_ version 3.7+, available as ``python`` command.
.. note:: .. note::

View file

@ -15,7 +15,6 @@ setup(
"Development Status :: 5 - Production/Stable", "Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License", "License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",

View file

@ -1,6 +1,6 @@
[tox] [tox]
envlist = envlist =
py{36,37,38,39,310}-dj{22,31,32} py{37,38,39,310}-dj{22,31,32}
py{38,39,310}-dj{40,main} py{38,39,310}-dj{40,main}
lint lint
sphinx sphinx
@ -8,7 +8,6 @@ envlist =
[gh-actions] [gh-actions]
python = python =
3.6: py36
3.7: py37 3.7: py37
3.8: py38, lint, sphinx, readme 3.8: py38, lint, sphinx, readme
3.9: py39 3.9: py39