]> git.phdru.name Git - m_librarian.git/commitdiff
Python 3.7
authorOleg Broytman <phd@phdru.name>
Thu, 31 Jan 2019 19:45:19 +0000 (22:45 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 31 Jan 2019 19:50:42 +0000 (22:50 +0300)
.travis.yml
appveyor.yml
setup.py
tox.ini

index 47bf07dd9303abded02be16f1219eab8b5bd20f5..bc2f57404d0864ddd5a4dd8ddd7ded7f74f31dc0 100644 (file)
@@ -24,10 +24,14 @@ matrix:
     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: "3.4"
-    env: TOXENV=py34-flake8
+  - python: "3.7"
+    dist: xenial
+    env: TOXENV=py37-flake8
 
 install:
   - travis_retry pip install --upgrade pip setuptools tox ppu
index 128ac372e55420673cdad4fe7cb3c54b7b013e03..41b1cb21b318acf539c7e2f3ffd0c6f8950db612 100644 (file)
@@ -35,6 +35,14 @@ environment:
       PYTHON_VERSION: "3.6"
       PYTHON_ARCH: "64"
       PYTHON_HOME: "C:\\Python36-x64"
+    - TOXENV: "py37-sqlite-w32"
+      PYTHON_VERSION: "3.7"
+      PYTHON_ARCH: "32"
+      PYTHON_HOME: "C:\\Python37"
+    - TOXENV: "py37-sqlite-w32"
+      PYTHON_VERSION: "3.7"
+      PYTHON_ARCH: "64"
+      PYTHON_HOME: "C:\\Python37-x64"
 
 install:
   # Ensure we use the right python version
index 158bcd426c55f89347760e096ab42347693bdcbb..f6779b1eeea5e0fc44c0fd9dce8fe57c5784d35b 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -45,6 +45,7 @@ setup(
         'Programming Language :: Python :: 3.4',
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
+        'Programming Language :: Python :: 3.7',
     ],
     packages=['m_librarian', 'm_librarian.web'],
     package_data={'m_librarian': [
diff --git a/tox.ini b/tox.ini
index 5e2f6b2d4f5c16d420064f7488be39c4b7989e93..620b522f45804a1f139835921976a1e763f9bbd3 100644 (file)
--- a/tox.ini
+++ b/tox.ini
@@ -1,6 +1,6 @@
 [tox]
 minversion = 2.0
-envlist = py{27,34,35,36,37},py{27,34}-flake8
+envlist = py{27,34,35,36,37},py{27,37}-flake8
 
 # Base test environment settings
 [testenv]
@@ -75,7 +75,7 @@ commands =
     {[testenv]commands}
     flake8
 
-[testenv:py34-flake8]
+[testenv:py37-flake8]
 deps =
     flake8
 commands =