From 08c7f1960fd1c00059883186f59379cd92f8a55a Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Wed, 24 Mar 2021 10:14:14 +0000 Subject: [PATCH] [CI/CD] Fix Tox SSL error in Windows Travis job The tox sdist-make step failed with SSL: CERTIFICATE_VERIFY_FAILED so fix by install certifi to ensure updated SSL certificates are available. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dd4a8f36e..086b664c9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,9 +43,10 @@ jobs: os: windows language: shell before_install: + # Python version must match available deluge-libtorrent - choco install python --version 3.6.8 - python --version - - python -m pip install --upgrade pip + - python -m pip install --upgrade pip certifi - python -m pip install deluge-libtorrent env: - PATH=/c/Python36:/c/Python36/Scripts:$PATH