diff mbox series

[v2,3/3] Add support for Python 3.6

Message ID 20171203222056.15410-4-stephen@that.guru
State Accepted
Headers show
Series Remove support for Django 1.6, 1.7 | expand

Commit Message

Stephen Finucane Dec. 3, 2017, 10:20 p.m. UTC
This is simply a case of adding the required tox environment and
updating the docs. We don't support Python 3.3 so the docs are updated
accordingly.

Signed-off-by: Stephen Finucane <stephen@that.guru>
---
 README.rst                                                  | 2 +-
 releasenotes/notes/python-3-6-support-0cf90c2329075372.yaml | 5 +++++
 tox.ini                                                     | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)
 create mode 100644 releasenotes/notes/python-3-6-support-0cf90c2329075372.yaml
diff mbox series

Patch

diff --git a/README.rst b/README.rst
index f8f44ab4..4a970ec5 100644
--- a/README.rst
+++ b/README.rst
@@ -41,7 +41,7 @@  of community projects.
 Requirements
 ------------
 
-- Python (2.7, 3.3 - 3.5)
+- Python (2.7, 3.4 - 3.6)
 
 - Django (1.8 - 1.11)
 
diff --git a/releasenotes/notes/python-3-6-support-0cf90c2329075372.yaml b/releasenotes/notes/python-3-6-support-0cf90c2329075372.yaml
new file mode 100644
index 00000000..d31e17bd
--- /dev/null
+++ b/releasenotes/notes/python-3-6-support-0cf90c2329075372.yaml
@@ -0,0 +1,5 @@ 
+---
+features:
+  - |
+    `Python 3.6 <https://www.python.org/downloads/release/python-350/>`_ is now
+    supported.
diff --git a/tox.ini b/tox.ini
index bd8af767..b70b6057 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@ 
 [tox]
 minversion = 2.0
-envlist = pep8,py{27,34,35}-django{18,19,110,111}
+envlist = pep8,py{27,34,35}-django{18,19,110,111},py36-django111
 skipsdist = True
 
 [testenv]