File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ go env
20
20
# Compile wheels
21
21
for PYBIN in /opt/python/* /bin; do
22
22
" ${PYBIN} /pip" install -r /io/lib/skyapi/requirements.txt
23
- " ${PYBIN} /pip" wheel /io/lib/skyapi/ -w /io/lib/skyapi/ wheelhouse/
23
+ " ${PYBIN} /pip" wheel /io/lib/skyapi/ -w wheelhouse/
24
24
done
25
25
26
26
# Bundle external shared libraries into the wheels
27
- for whl in /io/lib/skyapi/ wheelhouse/* .whl; do
28
- auditwheel repair " $whl " -w /io/lib/skyapi/ wheelhouse/
27
+ for whl in wheelhouse/* .whl; do
28
+ auditwheel repair " $whl " -w /io/wheelhouse/
29
29
done
30
30
Original file line number Diff line number Diff line change 16
16
from os import path
17
17
18
18
NAME = "skyapi"
19
- VERSION = "0.25.1.post5 "
19
+ VERSION = "0.25.1.post6 "
20
20
# To install the library, run the following
21
21
#
22
22
# python setup.py install
Original file line number Diff line number Diff line change 1
- __version__ = "0.25.1.post5 "
1
+ __version__ = "0.25.1.post6 "
2
2
init_error = None
3
3
4
4
def _print2stderr (msg ):
You can’t perform that action at this time.
0 commit comments