Skip to content
Snippets Groups Projects
Commit 6f7b48e4 authored by Piotr Maślanka's avatar Piotr Maślanka
Browse files

build a binary wheel on Linux as well

parent 23554de6
No related branches found
No related tags found
No related merge requests found
......@@ -12,3 +12,5 @@ script:
install:
- pip install -r requirements.txt
- python setup.py install
after_success:
- bash build.sh
build.sh 0 → 100644
#!/bin/bash
set -x
set -e
if [ $TRAVIS_BRANCH == "master" ]; then
pip install wheel twine
python setup.py bdist bdist_wheel
twine upload -u $PYPI_USER -p $PYPI_PWD dist/*
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment