]> git.phdru.name Git - ppu.git/commitdiff
Build, Tests(tox): Python 3.7
authorOleg Broytman <phd@phdru.name>
Thu, 28 Jun 2018 14:24:14 +0000 (17:24 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 4 Jul 2018 14:05:57 +0000 (17:05 +0300)
[skip ci]

devscripts/release
tox.ini

index b02e47042932a07410dd37c154322554a88e7965..c6bc18a727da917e2a1f55fa4b4b3be86b4d2831 100755 (executable)
@@ -9,7 +9,7 @@ python setup.py build_py &&
 python setup.py build --executable '/usr/bin/env python' &&
 python setup.py sdist &&
 
-for py in 2.7 3.3 3.4 3.5 3.6; do
+for py in 2.7 3.3 3.4 3.5 3.6 3.7; do
    find build -name '*.py[co]' -delete &&
    python$py setup.py build_py &&
    python$py setup.py build --executable '/usr/bin/env python' &&
diff --git a/tox.ini b/tox.ini
index 03cdc06d86d2ad1c8c7a5bd7c5bc5355c2b08f19..45c75b46577bdeb9ad3636e03287e0c2ae76f12c 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 1.8
-envlist = {py27,py33,py34,py35,py36},pypy,{py27,py34}-flake8
+envlist = py{27,33,34,35,36,37}, pypy, py{27,34}-flake8
 
 # Base test environment settings
 [testenv]
@@ -10,6 +10,7 @@ basepython =
     py34: {env:TOXPYTHON:python3.4}
     py35: {env:TOXPYTHON:python3.5}
     py36: {env:TOXPYTHON:python3.6}
+    py37: {env:TOXPYTHON:python3.7}
     pypy: {env:TOXPYTHON:pypy}
 commands =
     {envpython} --version
@@ -46,6 +47,11 @@ commands =
     {[testenv]commands}
     {[general]commands}
 
+[testenv:py37]
+commands =
+    {[testenv]commands}
+    {[general]commands}
+
 [testenv:pypy]
 commands =
     {[testenv]commands}