Skip to content
Merged
Show file tree
Hide file tree
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
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,8 @@ before_deploy:
# Generate egg distribution.
- python setup.py bdist_egg
# Generate wheel distribution.
# Note: only do this once for each major Python version, as the minor version
# number is not encoded in the resulting filename (and contents are the same).
- case "$TRAVIS_PYTHON_VERSION" in 2.7|3.5) python setup.py bdist_wheel;; esac
# Note: only do this once, since we create a universal wheel.
- case "$TRAVIS_PYTHON_VERSION" in 3.5) python setup.py bdist_wheel;; esac

deploy:
- provider: releases
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1