From fdc8a17d261cf6d37b75e30a41976da6a5c509a0 Mon Sep 17 00:00:00 2001 From: Andrew Senetar Date: Sat, 7 Aug 2021 19:35:57 -0500 Subject: [PATCH] Update .travis.yml - Windows test uses 3.9.6 now - Intentation changes --- .travis.yml | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/.travis.yml b/.travis.yml index e8d96966..e5b9bc47 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,27 +1,27 @@ sudo: false language: python install: - - pip3 install -r requirements.txt -r requirements-extra.txt + - pip3 install -r requirements.txt -r requirements-extra.txt script: tox matrix: - include: - - os: "linux" - dist: "xenial" - python: "3.6" - - os: "linux" - dist: "xenial" - python: "3.7" - - os: "linux" - dist: "focal" - python: "3.8" - - os: "linux" - dist: "focal" - python: "3.9" - - os: "windows" - language: shell - python: "3.8" - env: "PATH=/c/python38:/c/python38/Scripts:$PATH" - before_install: - - choco install python --version=3.8.6 - - cp /c/python38/python.exe /c/python38/python3.exe - script: tox -e py38 + include: + - os: "linux" + dist: "xenial" + python: "3.6" + - os: "linux" + dist: "xenial" + python: "3.7" + - os: "linux" + dist: "focal" + python: "3.8" + - os: "linux" + dist: "focal" + python: "3.9" + - os: "windows" + language: shell + python: "3.9" + env: "PATH=/c/python39:/c/python39/Scripts:$PATH" + before_install: + - choco install python --version=3.9.6 + - cp /c/python39/python.exe /c/python39/python3.exe + script: tox -e py39