Add installation of certifi for windows ci builds

This commit is contained in:
Roman Mogylatov 2020-10-27 14:04:52 -04:00
parent 25d626e92f
commit 3b4fae8dca
2 changed files with 6 additions and 2 deletions

View File

@ -88,9 +88,12 @@ jobs:
language: shell
env: TWINE_USERNAME=__token__
before_install:
- choco install python --version 3.8.0
- choco install python --version 3.8.6
- export PATH="/c/Python38:/c/Python38/Scripts:$PATH"
install: python -m pip install cibuildwheel>=1.5.1
install:
- python3 -m pip install certifi cibuildwheel>=1.5.1
- export SSL_CERT_FILE=`python3 -c "import certifi;print(certifi.where())"`
- echo $SSL_CERT_FILE
script: python -m cibuildwheel --output-dir wheelhouse
after_success:
- python -m pip install twine

View File

@ -10,6 +10,7 @@ follows `Semantic versioning`_
Develop
-----
- Migrate from ``travis-ci.org`` to ``travis-ci.com`` to fix build issues.
- Add explicit installation of ``certifi`` for Windows build to resolve build problems.
4.1.2
-----