* upgrade for windows on travis * Install python on travis windows, update readme, update tests * update readme, travis config and clean code * install python inside cibuildwheel run * use register to get python path * fixes from review * fix pip version * use nuget for instal python * clean code * Update cibuildwheel/windows.py Co-Authored-By: Joe Rickerby <joerick@mac.com> * fixes from review * Final bits of tidy up
42 lines
890 B
YAML
42 lines
890 B
YAML
language: generic
|
|
|
|
matrix:
|
|
include:
|
|
# Linux Python 2
|
|
- sudo: required
|
|
language: python
|
|
python: 2.7
|
|
services: docker
|
|
env: PYTHON=python
|
|
|
|
# Linux Python 3
|
|
- sudo: required
|
|
language: python
|
|
python: 3.4
|
|
services: docker
|
|
env: PYTHON=python
|
|
|
|
# macOS Python 2
|
|
- os: osx
|
|
env: PYTHON=python2
|
|
|
|
# macOS Python 3
|
|
- os: osx
|
|
env: PYTHON=python3
|
|
before_install:
|
|
- brew update
|
|
- brew outdated python || brew upgrade python
|
|
|
|
- os: windows
|
|
language: shell
|
|
before_install:
|
|
- choco install python3 --version 3.6.8 --no-progress -y
|
|
install:
|
|
- C:\\Python36\\python -m pip install -r requirements-dev.txt
|
|
script:
|
|
- C:\\Python36\\python ./bin/run_tests.py
|
|
|
|
install: $PYTHON -m pip install -r requirements-dev.txt
|
|
|
|
script: $PYTHON ./bin/run_tests.py
|