Skip to content

Commit 0f75c30

Browse files
committed
Updates Makefile
1 parent b6989fe commit 0f75c30

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

Makefile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,28 @@ setup: setup-python
2121
test:
2222
@py.test --cov=pendulum --cov-config .coveragerc tests/ -sq
2323

24-
wheels: clean-wheels wheels_x64 wheels_i686
24+
wheels_x64: clean_wheels build_wheels_x64
2525

26-
wheels_x64:
26+
wheels_i686: clean_wheels build_wheels_i686
27+
28+
build_wheels_x64:
2729
docker pull quay.io/pypa/manylinux1_x86_64
2830
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
2931

30-
wheels_i686:
32+
build_wheels_i686:
3133
docker pull quay.io/pypa/manylinux1_i686
3234
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/build-wheels.sh
3335

34-
clean-wheels:
36+
clean_wheels:
3537
rm -rf wheelhouse/
3638

37-
upload-wheels_x64:
39+
upload_wheels_x64:
3840
@for f in wheelhouse/*manylinux1_x86_64.whl ; do \
3941
echo "Upload $$f" ; \
4042
python -m twine upload $$f ; \
4143
done
4244

43-
upload-wheels_i686:
45+
upload_wheels_i686:
4446
@for f in wheelhouse/*manylinux1_i686.whl ; do \
4547
echo "Upload $$f" ; \
4648
python -m twine upload $$f ; \

0 commit comments

Comments
 (0)