Skip to content

Commit 85c1bb0

Browse files
committed
Fix deploy step
Deploy only for one Python env. If we don't restrict here then Travis will try to upload to PyPi multiple times (once for each Python env) and will fail. This change creates a universal `bdist_wheel`. Signed-off-by: Nicolas Bock <[email protected]>
1 parent 7bebe40 commit 85c1bb0

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Diff for: .travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ deploy:
3030
skip_cleanup: false
3131
on:
3232
tags: true
33+
python: "3.6"
3334
branch: master

Diff for: setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

0 commit comments

Comments
 (0)