From 34f7d9830f3aff457336b686f174e2685585fc94 Mon Sep 17 00:00:00 2001 From: MinchinWeb Date: Thu, 28 Nov 2019 08:50:06 -0700 Subject: [PATCH] [Travis] Windows: try Python 3.7 for cryptography wheels? --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index e8278da2..5f020fc1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,15 +20,16 @@ jobs: language: shell # 'language: python' is an error on Travis CI macOS before_install: - pip3 install poetry~=0.12.17 # 'pip' points to Python 2 on MacOS - - name: "Python 3.8.0 on Windows" + - name: "Python 3.7.5 on Windows" os: windows language: shell # 'language: python' is an error on Travis CI Windows before_install: - - choco install python --version 3.8.0 + - choco install python --version 3.7.5 - python -m pip install --upgrade pip + - pip --version - pip install poetry~=0.12.17 env: - - PATH=/c/Python38:/c/Python38/Scripts:$PATH + - PATH=/c/Python37:/c/Python37/Scripts:$PATH allow_failures: - python: 3.8 - python: nightly