mirror of
https://github.com/vale981/jobmanager
synced 2025-03-05 18:01:38 -05:00
29 lines
481 B
YAML
29 lines
481 B
YAML
![]() |
# Mac OS X Python build
|
||
|
language:
|
||
|
- objective-c
|
||
|
python:
|
||
|
- "3.4"
|
||
|
# Only build master branch
|
||
|
branches:
|
||
|
only:
|
||
|
- master
|
||
|
install:
|
||
|
# install python via brew
|
||
|
- which python
|
||
|
- python --version
|
||
|
# pip init
|
||
|
- pip install --upgrade pip
|
||
|
# use anaconda
|
||
|
- pip install conda
|
||
|
- conda init
|
||
|
- conda install --yes 'numpy<1.9.0'
|
||
|
# final pip installs
|
||
|
- pip install wheel
|
||
|
# show packages
|
||
|
- pip freeze
|
||
|
# build extensions
|
||
|
- python setup.py develop
|
||
|
script:
|
||
|
# Create wheel pacakge
|
||
|
- python setup.py test
|