We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fda53b4 + 7db3f5a commit 9ffdb29Copy full SHA for 9ffdb29
2 files changed
.travis.yml
@@ -32,9 +32,8 @@ before_deploy:
32
# Generate egg distribution.
33
- python setup.py bdist_egg
34
# 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
+ # Note: only do this once, since we create a universal wheel.
+ - case "$TRAVIS_PYTHON_VERSION" in 3.5) python setup.py bdist_wheel;; esac
38
39
deploy:
40
- provider: releases
setup.cfg
@@ -0,0 +1,2 @@
1
+[bdist_wheel]
2
+universal = 1
0 commit comments