From 8d8d57c9cec8905a6ee0cc76060ad43441a9afab Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 15 Sep 2017 21:19:42 -0300 Subject: [PATCH] Test with python 3.6 on CI as well --- .travis.yml | 6 +++++- appveyor.yml | 10 +++++++++- setup.py | 1 + 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8eb32665..c5ac1baa 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,9 +15,13 @@ env: - PYTEST_QT_API=pyqt4 PYQT_PACKAGE="pyqt=4.*" PYTHON_VERSION=3.4 - PYTEST_QT_API=pyqt4v2 PYQT_PACKAGE="pyqt=4.*" PYTHON_VERSION=3.4 - PYTEST_QT_API=pyside PYQT_PACKAGE="pyside=1.*" PYTHON_VERSION=3.4 - - PYTEST_QT_API=pyqt5 PYQT_PACKAGE="pyqt=5.*" PYTHON_VERSION=3.4 + + - PYTEST_QT_API=pyqt5 PYQT_PACKAGE="pyqt=5.*" PYTHON_VERSION=3.5 - PYTEST_QT_API=pyside2 PYQT_PACKAGE="pyside2=2.*" PYTHON_VERSION=3.5 + - PYTEST_QT_API=pyqt5 PYQT_PACKAGE="pyqt=5.*" PYTHON_VERSION=3.6 + - PYTEST_QT_API=pyside2 PYQT_PACKAGE="pyside2=2.*" PYTHON_VERSION=3.6 + install: - sudo apt-get update diff --git a/appveyor.yml b/appveyor.yml index cd86073e..ec9b92f0 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -30,13 +30,21 @@ environment: - PYTHON_VERSION: "3.4" PYTEST_QT_API: "pyside" CONDA_DEPENDENCIES: "pytest pyside=1.*" - - PYTHON_VERSION: "3.4" + + - PYTHON_VERSION: "3.5" PYTEST_QT_API: "pyqt5" CONDA_DEPENDENCIES: "pytest pyqt=5.*" - PYTHON_VERSION: "3.5" PYTEST_QT_API: "pyside2" CONDA_DEPENDENCIES: "pytest pyside2=2.*" + - PYTHON_VERSION: "3.6" + PYTEST_QT_API: "pyqt5" + CONDA_DEPENDENCIES: "pytest pyqt=5.*" + - PYTHON_VERSION: "3.6" + PYTEST_QT_API: "pyside2" + CONDA_DEPENDENCIES: "pytest pyside2=2.*" + platform: -x64 diff --git a/setup.py b/setup.py index 147f0bc9..c6eb4a18 100644 --- a/setup.py +++ b/setup.py @@ -52,6 +52,7 @@ def run_tests(self): 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Desktop Environment :: Window Managers', 'Topic :: Software Development :: Quality Assurance', 'Topic :: Software Development :: Testing',