Skip to content
Snippets Groups Projects
  • Piotr Maślanka's avatar
    Feature/#11 (#47) · 552701e6
    Piotr Maślanka authored
    * fixes #11
    
    * send back a channelflowok
    
    * add support for blocking/unblocking the connection
    
    * support notifying the app when connection is blocked
    
    * code reformatted
    
    * code reformat
    
    * 1.0.1
    Unverified
    552701e6
build.sh 285 B
#!/bin/bash

set -x
set -e

pip install yapf
python -m compile_definitions
python setup.py bdist bdist_wheel

if [ $TRAVIS_BRANCH == "master" ]; then

  if [ $TRAVIS_PYTHON_VERSION == "2.7" ]; then
    pip install wheel twine
    twine upload -u $PYPI_USER -p $PYPI_PWD dist/*
  fi
fi