]> git.ipfire.org Git - thirdparty/patchwork.git/commitdiff
Add support for Python 3.6
authorStephen Finucane <stephen@that.guru>
Fri, 24 Nov 2017 20:07:35 +0000 (20:07 +0000)
committerStephen Finucane <stephen@that.guru>
Thu, 4 Jan 2018 14:20:20 +0000 (14:20 +0000)
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>
Reviewed-by: Daniel Axtens <dja@axtens.net>
README.rst
releasenotes/notes/python-3-6-support-0cf90c2329075372.yaml [new file with mode: 0644]
tox.ini

index f8f44ab499fc0791be1281ee734b82bbd8c5a46e..4a970ec5a9ff36eddc4e180bf326764b05e41ac3 100644 (file)
@@ -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 (file)
index 0000000..f4fe08a
--- /dev/null
@@ -0,0 +1,5 @@
+---
+features:
+  - |
+    `Python 3.6 <https://www.python.org/downloads/release/python-360/>`_ is now
+    supported.
diff --git a/tox.ini b/tox.ini
index bd8af76729cccbe3a62e9524f958383872000a37..b70b60573eb794a4f6fd770d98683749ef6d4bb3 100644 (file)
--- 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]