File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- sudo : required
2-
3- matrix :
4- include :
5- - dist : trusty
6- language : python
7- services :
8- - docker
9- script :
10- - ./make/manylinux1/build_wheels.sh
11- - os : osx
12- osx_image : xcode8.3
13- script :
14- - ./make/osx/build_wheels.sh
1+ language : generic
152
3+ jobs :
4+ include :
5+ - os : linux
6+ language : python
7+ services :
8+ - docker
9+ script :
10+ - ./make/manylinux1/build_wheels.sh
11+ - os : osx
12+ osx_image : xcode9.4
13+ script :
14+ - ./make/osx/build_wheels.sh
1615install :
1716 - if [ "${TRAVIS_OS_NAME:-}" == "osx" ]; then ./make/osx/install_python.sh; fi
Original file line number Diff line number Diff line change 11set -e
22set +x
33
4- for VER in 2 .7 3.4 3.5 3.6 3.7 ; do
4+ for VER in 3 .7 3.8 ; do
55 PIP=" pip${VER} "
66 PYTHON=" python${VER} "
77 VENV=" venv_${VER} "
8+ PATH=" /Library/Frameworks/Python.framework/Versions/${VER} /bin:$PATH "
89
910 # update pip for newer TLS support
1011 curl https://bootstrap.pypa.io/get-pip.py | ${PYTHON}
Original file line number Diff line number Diff line change @@ -3,10 +3,8 @@ set -euo pipefail
33set -x
44
55URLS=(
6- ' https://www.python.org/ftp/python/2.7.14/python-2.7.14-macosx10.6.pkg'
7- ' https://www.python.org/ftp/python/3.4.4/python-3.4.4-macosx10.6.pkg'
8- ' https://www.python.org/ftp/python/3.5.4/python-3.5.4-macosx10.6.pkg'
9- ' https://www.python.org/ftp/python/3.6.4/python-3.6.4-macosx10.6.pkg'
6+ ' https://www.python.org/ftp/python/3.7.9/python-3.7.9-macosx10.9.pkg'
7+ ' https://www.python.org/ftp/python/3.8.6/python-3.8.6-macosx10.9.pkg'
108)
119
1210for url in " ${URLS[@]} " ; do
Original file line number Diff line number Diff line change 1- -r prod.txt
1+ -r prod.txt
Original file line number Diff line number Diff line change 11-r prod.txt
22tox
3- pytest
3+ pytest
You can’t perform that action at this time.
0 commit comments