Correctly specify minimum requirement of Python 3.6

This commit is contained in:
Scot Hacker 2019-01-08 23:09:49 -08:00
parent 78e9c510bc
commit 6953085285
3 changed files with 13 additions and 11 deletions

View file

@ -19,7 +19,7 @@ assignment application for Django, designed to be dropped into an existing site
## Requirements
* Django 2.0+
* Python 3.3+
* Python 3.6+
* jQuery (full version, not "slim", for drag/drop prioritization)
* Bootstrap (to work with provided templates, though you can override them)
* bleach (`pip install bleach`)
@ -167,6 +167,8 @@ The previous `tox` system was removed with the v2 release, since we no longer ai
# Version History
**2.1.1** Correct Python version requirement in documentation to Python 3.6
**2.1.1** Split up views into separate modules.
**2.1.0** December 2018: No longer allowing Javascript in task or comment bodies. Misc bug fixes.

View file

@ -19,7 +19,7 @@ assignment application for Django, designed to be dropped into an existing site
## Requirements
* Django 2.0+
* Python 3.3+
* Python 3.6+
* jQuery (full version, not "slim", for drag/drop prioritization)
* Bootstrap (to work with provided templates, though you can override them)

View file

@ -1,7 +1,7 @@
"""
A multi-user, multi-group task management and assignment system for Django.
"""
__version__ = '2.1.1'
__version__ = '2.1.2'
__author__ = 'Scot Hacker'
__email__ = 'shacker@birdhouse.org'