Skip to content

Commit 9ffdb29

Browse files
Merge pull request #61 from benoit-pierre/universal_wheel
setup: create a universal wheel
2 parents fda53b4 + 7db3f5a commit 9ffdb29

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.travis.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,8 @@ before_deploy:
3232
# Generate egg distribution.
3333
- python setup.py bdist_egg
3434
# Generate wheel distribution.
35-
# Note: only do this once for each major Python version, as the minor version
36-
# number is not encoded in the resulting filename (and contents are the same).
37-
- case "$TRAVIS_PYTHON_VERSION" in 2.7|3.5) python setup.py bdist_wheel;; esac
35+
# Note: only do this once, since we create a universal wheel.
36+
- case "$TRAVIS_PYTHON_VERSION" in 3.5) python setup.py bdist_wheel;; esac
3837

3938
deploy:
4039
- provider: releases

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

0 commit comments

Comments
 (0)