Skip to content

Commit 2c6d39b

Browse files
committed
Updates Makefile
1 parent 9c0a0ca commit 2c6d39b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,13 @@ wheels_i686:
3434
clean-wheels:
3535
rm -rf wheelhouse/
3636

37-
upload-wheels:
37+
upload-wheels_x64:
3838
@for f in wheelhouse/*manylinux1_x86_64.whl ; do \
3939
echo "Upload $$f" ; \
4040
python -m twine upload $$f ; \
4141
done
42+
43+
upload-wheels_i686:
4244
@for f in wheelhouse/*manylinux1_i686.whl ; do \
4345
echo "Upload $$f" ; \
4446
python -m twine upload $$f ; \

0 commit comments

Comments
 (0)