mirror of
https://github.com/jazzband/django-downloadview.git
synced 2026-03-16 22:40:25 +00:00
Drop Python 3.6 support
This commit is contained in:
parent
a6975d9669
commit
8c74a77ebe
5 changed files with 11 additions and 11 deletions
12
CHANGELOG
12
CHANGELOG
|
|
@ -5,17 +5,19 @@ This document describes changes between past releases. For information about
|
|||
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
|
||||
- Add Django 3.2 support
|
||||
- Add support for Python 3.10
|
||||
- Add support for Django 4.0
|
||||
|
||||
2.2 (unreleased)
|
||||
----------------
|
||||
|
||||
- Remove support for Python 3.5 and Django 1.11
|
||||
- Add support for Python 3.9 and Django 3.1
|
||||
- Remove old urls syntax and adopt the new one
|
||||
|
|
|
|||
4
INSTALL
4
INSTALL
|
|
@ -12,8 +12,8 @@ Install
|
|||
Requirements
|
||||
************
|
||||
|
||||
`django-downloadview` has been tested with `Python`_ 3.6, 3.7 and 3.8. Other
|
||||
versions may work, but they are not part of the test suite at the moment.
|
||||
`django-downloadview` has been tested with `Python`_ 3.7, 3.8, 3.9 and 3.10.
|
||||
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
|
||||
the following requirements:
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@ Deploy the demo
|
|||
|
||||
System requirements:
|
||||
|
||||
* `Python`_ version 3.6+, available as ``python`` command.
|
||||
* `Python`_ version 3.7+, available as ``python`` command.
|
||||
|
||||
.. note::
|
||||
|
||||
|
|
|
|||
1
setup.py
1
setup.py
|
|
@ -15,7 +15,6 @@ setup(
|
|||
"Development Status :: 5 - Production/Stable",
|
||||
"License :: OSI Approved :: BSD License",
|
||||
"Programming Language :: Python :: 3 :: Only",
|
||||
"Programming Language :: Python :: 3.6",
|
||||
"Programming Language :: Python :: 3.7",
|
||||
"Programming Language :: Python :: 3.8",
|
||||
"Programming Language :: Python :: 3.9",
|
||||
|
|
|
|||
3
tox.ini
3
tox.ini
|
|
@ -1,6 +1,6 @@
|
|||
[tox]
|
||||
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}
|
||||
lint
|
||||
sphinx
|
||||
|
|
@ -8,7 +8,6 @@ envlist =
|
|||
|
||||
[gh-actions]
|
||||
python =
|
||||
3.6: py36
|
||||
3.7: py37
|
||||
3.8: py38, lint, sphinx, readme
|
||||
3.9: py39
|
||||
|
|
|
|||
Loading…
Reference in a new issue