From: Ben Darnell Date: Fri, 30 Oct 2020 13:05:06 +0000 (-0400) Subject: ci: Work around outdated windows root certificates X-Git-Tag: v6.1.0^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c9e04e43855a10de1df639d8728e099608b0028;p=thirdparty%2Ftornado.git ci: Work around outdated windows root certificates --- diff --git a/.travis.yml b/.travis.yml index fa25e6759..83943b296 100644 --- a/.travis.yml +++ b/.travis.yml @@ -50,6 +50,11 @@ jobs: language: shell before_install: - choco install python --version 3.8.0 + # Windows build images have outdated root certificates; until that's + # fixed use certifi instead. + # https://github.com/joerick/cibuildwheel/issues/452 + - python -m pip install certifi + - export SSL_CERT_FILE=`python -c "import certifi; print(certifi.where())"` - os: osx env: BUILD_WHEEL=1 language: shell