From f4e5afa20ba938486abf55182acdd085b2833564 Mon Sep 17 00:00:00 2001 From: Teemu R Date: Wed, 18 Mar 2020 12:50:42 +0100 Subject: [PATCH] Depend on py3.7+ for tox, add python 3.8 to azure pipeline targets (#29) --- azure-pipelines.yml | 9 +++++++++ tox.ini | 5 ++--- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 8c3bcf8c..bdbf1c20 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -8,15 +8,24 @@ strategy: Python 3.7 Ubuntu: python.version: '3.7' vmImage: 'ubuntu-latest' + Python 3.8 Ubuntu: + python.version: '3.8' + vmImage: 'ubuntu-latest' # PyPy Ubuntu: # python.version: pypy3 # vmImage: 'ubuntu-latest' Python 3.7 Windows: python.version: '3.7' vmImage: 'windows-latest' + Python 3.8 Windows: + python.version: '3.8' + vmImage: 'windows-latest' Python 3.7 OSX: python.version: '3.7' vmImage: 'macOS-latest' + Python 3.8 OSX: + python.version: '3.8' + vmImage: 'macOS-latest' pool: vmImage: $(vmImage) diff --git a/tox.ini b/tox.ini index 261cedd0..333d869d 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,10 @@ [tox] -envlist=py35,py36,py37,flake8,linting,typing +envlist=py37,py38,flake8,linting,typing skip_missing_interpreters = True [tox:travis] -3.5 = py35 -3.6 = py36 3.7 = py37 +3.8 = py38 [testenv] passenv = TRAVIS TRAVIS_JOB_ID TRAVIS_BRANCH