[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.
This commit is contained in:
parent
8a4ec493c0
commit
08c7f1960f
|
@ -43,9 +43,10 @@ jobs:
|
||||||
os: windows
|
os: windows
|
||||||
language: shell
|
language: shell
|
||||||
before_install:
|
before_install:
|
||||||
|
# Python version must match available deluge-libtorrent
|
||||||
- choco install python --version 3.6.8
|
- choco install python --version 3.6.8
|
||||||
- python --version
|
- python --version
|
||||||
- python -m pip install --upgrade pip
|
- python -m pip install --upgrade pip certifi
|
||||||
- python -m pip install deluge-libtorrent
|
- python -m pip install deluge-libtorrent
|
||||||
env:
|
env:
|
||||||
- PATH=/c/Python36:/c/Python36/Scripts:$PATH
|
- PATH=/c/Python36:/c/Python36/Scripts:$PATH
|
||||||
|
|
Loading…
Reference in New Issue