Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ after_success:

before_deploy:
# Generate source distribution.
# Note: only do this with Python 3.5 so we get support for tar.xz, and
# because the contents of the distribution are the same for all versions.
- case "$TRAVIS_PYTHON_VERSION" in 3.5) python setup.py sdist --formats=xztar;; esac
# Note: only do this with Python 3.5 because the contents
# of the distribution are the same for all versions.
- case "$TRAVIS_PYTHON_VERSION" in 3.5) python setup.py sdist --formats=bztar;; esac
# Generate egg distribution.
- python setup.py bdist_egg
# Generate wheel distribution.
Expand Down