From 976e34e215367d480cf2f1ab3b194c9b807ef9ec Mon Sep 17 00:00:00 2001 From: Gordon Mohr Date: Fri, 27 Dec 2019 17:32:44 -0800 Subject: [PATCH] list (& thus build) later python versions earlier --- .travis.yml | 16 ++++++++++------ appveyor.yml | 13 +++++++------ 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index e69353f8a3..f8f06c736c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,10 @@ matrix: - python: '3.6' env: TOXENV="flake8,flake8-docs" - - python: '3.6' - env: TOXENV="py36-linux" + - python: '3.8' + env: + - TOXENV="py38-linux" + dist: bionic - python: '3.7' env: @@ -27,10 +29,12 @@ matrix: dist: xenial sudo: true - - python: '3.8' - env: - - TOXENV="py38-linux" - dist: bionic + - python: '3.6' + env: TOXENV="py36-linux" + + + + install: diff --git a/appveyor.yml b/appveyor.yml index 4021368700..44e3a01dfb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -16,20 +16,21 @@ environment: OPENBLAS_NUM_THREADS=4 matrix: - - PYTHON: "C:\\Python36-x64" - PYTHON_VERSION: "3.6" + - PYTHON: "C:\\Python38-x64" + PYTHON_VERSION: "3.8" PYTHON_ARCH: "64" - TOXENV: "py36-win" + TOXENV: "py38-win" - PYTHON: "C:\\Python37-x64" PYTHON_VERSION: "3.7" PYTHON_ARCH: "64" TOXENV: "py37-win" - - PYTHON: "C:\\Python38-x64" - PYTHON_VERSION: "3.8" + - PYTHON: "C:\\Python36-x64" + PYTHON_VERSION: "3.6" PYTHON_ARCH: "64" - TOXENV: "py38-win" + TOXENV: "py36-win" + init: - "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"