summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCalum Lind <calumlind+deluge@gmail.com>2021-03-24 10:14:14 +0000
committerCalum Lind <calumlind+deluge@gmail.com>2021-03-24 10:25:30 +0000
commit08c7f1960fd1c00059883186f59379cd92f8a55a (patch)
tree5ac26ce8fb330332db6913d30bd6b1008326c627
parent8a4ec493c0736d38aba204fa455036b4160494de (diff)
downloaddeluge-08c7f1960fd1c00059883186f59379cd92f8a55a.tar.gz
deluge-08c7f1960fd1c00059883186f59379cd92f8a55a.tar.bz2
deluge-08c7f1960fd1c00059883186f59379cd92f8a55a.zip
[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.
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
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