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
21
21
test :
22
22
@py.test --cov=pendulum --cov-config .coveragerc tests/ -sq
23
23
24
- wheels : clean-wheels wheels_x64 wheels_i686
24
+ wheels_x64 : clean_wheels build_wheels_x64
25
25
26
- wheels_x64 :
26
+ wheels_i686 : clean_wheels build_wheels_i686
27
+
28
+ build_wheels_x64 :
27
29
docker pull quay.io/pypa/manylinux1_x86_64
28
30
docker run --rm -v ` pwd` :/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
29
31
30
- wheels_i686 :
32
+ build_wheels_i686 :
31
33
docker pull quay.io/pypa/manylinux1_i686
32
34
docker run --rm -v ` pwd` :/io quay.io/pypa/manylinux1_i686 /io/build-wheels.sh
33
35
34
- clean-wheels :
36
+ clean_wheels :
35
37
rm -rf wheelhouse/
36
38
37
- upload-wheels_x64 :
39
+ upload_wheels_x64 :
38
40
@for f in wheelhouse/* manylinux1_x86_64.whl ; do \
39
41
echo " Upload $$ f" ; \
40
42
python -m twine upload $$ f ; \
41
43
done
42
44
43
- upload-wheels_i686 :
45
+ upload_wheels_i686 :
44
46
@for f in wheelhouse/* manylinux1_i686.whl ; do \
45
47
echo " Upload $$ f" ; \
46
48
python -m twine upload $$ f ; \
You can’t perform that action at this time.
0 commit comments