]> git.phdru.name Git - cookiecutter.git/commitdiff
Python 3.7
authorOleg Broytman <phd@phdru.name>
Fri, 1 Feb 2019 20:24:36 +0000 (23:24 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 1 Feb 2019 20:24:57 +0000 (23:24 +0300)
project_template/.travis.yml
project_template/appveyor.yml
project_template/setup.py
project_template/tox.ini

index 1ac2757f49de5db57ef0a68596a5f889fb3da608..d78fc858d1324b9425d095de7fae9354f8b256e7 100644 (file)
@@ -26,10 +26,14 @@ matrix:
     env: TOXENV=py35
   - python: "3.6"
     env: TOXENV=py36
     env: TOXENV=py35
   - python: "3.6"
     env: TOXENV=py36
+  - python: "3.7"
+    dist: xenial
+    env: TOXENV=py37
   - python: "2.7"
     env: TOXENV=py27-flake8
   - python: "2.7"
     env: TOXENV=py27-flake8
-  - python: "3.4"
-    env: TOXENV=py34-flake8
+  - python: "3.7"
+    dist: xenial
+    env: TOXENV=py37-flake8
   - python: "pypy"
     env: TOXENV=pypy
 
   - python: "pypy"
     env: TOXENV=pypy
 
index 3cf8282874f18d833f34657acd14590c826621a6..107899846ff9fa5b4f97f1f360a305cc398a2556 100644 (file)
@@ -56,6 +56,14 @@ environment:
       PYTHON_VERSION: "3.6"
       PYTHON_ARCH: "64"
       PYTHON_HOME: "C:\\Python36-x64"
       PYTHON_VERSION: "3.6"
       PYTHON_ARCH: "64"
       PYTHON_HOME: "C:\\Python36-x64"
+    - TOXENV: "py37"
+      PYTHON_VERSION: "3.7"
+      PYTHON_ARCH: "32"
+      PYTHON_HOME: "C:\\Python37"
+    - TOXENV: "py37"
+      PYTHON_VERSION: "3.7"
+      PYTHON_ARCH: "64"
+      PYTHON_HOME: "C:\\Python37-x64"
 
 install:
   # Ensure we use the right python version
 
 install:
   # Ensure we use the right python version
index 7e8df8d6259aaee864e2aa9ea72dbc0eb7502e9e..2ca49ae7358659578027b365a3afabbd58715527 100755 (executable)
@@ -44,6 +44,7 @@ setup(
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
     ],
     packages=['{project}'],
     package_data={'{project}': []},
     ],
     packages=['{project}'],
     package_data={'{project}': []},
index 2164f059b1e4df294c976f448b6db60cbf321402..f3eceaaf2ae278c6998c635539d38ce63bdf599b 100644 (file)
@@ -1,7 +1,7 @@
 [tox]
 minversion = 2.0
 toxworkdir={homedir}/.tox/{project}
 [tox]
 minversion = 2.0
 toxworkdir={homedir}/.tox/{project}
-envlist = py27,py3{4,5,6},py{27,34}-flake8
+envlist = py27,py3{4,5,6,7},py{27,37}-flake8
 
 # Base test environment settings
 [testenv]
 
 # 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}
     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
     pypy: {env:TOXPYTHON:pypy}
 commands =
     {envpython} --version
@@ -43,6 +44,10 @@ commands =
 commands =
     {[general]commands}
 
 commands =
     {[general]commands}
 
+[testenv:py37]
+commands =
+    {[general]commands}
+
 [testenv:py27-flake8]
 deps =
     flake8
 [testenv:py27-flake8]
 deps =
     flake8
@@ -50,7 +55,7 @@ commands =
     {[testenv]commands}
     flake8
 
     {[testenv]commands}
     flake8
 
-[testenv:py34-flake8]
+[testenv:py37-flake8]
 deps =
     flake8
 commands =
 deps =
     flake8
 commands =