File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -21,26 +21,28 @@ setup: setup-python
2121test :
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 ; \
You can’t perform that action at this time.
0 commit comments