Skip to content

Commit

Permalink
Unconditionally create wheels for Mac OS and Linux for version 4.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Howitz committed May 3, 2018
1 parent 2d362bf commit e15908c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ matrix:
- docker
env: DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
before_install:
- if [[ $TRAVIS_TAG ]]; then bash .manylinux.sh; fi
- bash .manylinux.sh
- exit 0
- services:
- docker
env:
- DOCKER_IMAGE=quay.io/pypa/manylinux1_i686
- PRE_CMD=linux32
before_install:
- if [[ $TRAVIS_TAG ]]; then bash .manylinux.sh; fi
- bash .manylinux.sh
- exit 0

before_install:
Expand Down Expand Up @@ -85,9 +85,9 @@ after_success:
- echo [pypi] >> ~/.pypirc
- echo username=zope.wheelbuilder >> ~/.pypirc
- echo password=$PYPIPASSWORD >> ~/.pypirc
- if [[ $TRAVIS_TAG && "$TRAVIS_OS_NAME" == "osx" ]]; then pip install twine; fi
- if [[ $TRAVIS_TAG && "$TRAVIS_OS_NAME" == "osx" ]]; then python setup.py bdist_wheel; fi
- if [[ $TRAVIS_TAG && "$TRAVIS_OS_NAME" == "osx" ]]; then twine upload dist/*; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then pip install twine; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then python setup.py bdist_wheel; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then twine upload dist/*; fi

env:
global:
Expand Down

0 comments on commit e15908c

Please sign in to comment.