File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,16 @@ source /etc/profile
17
17
go version
18
18
go env
19
19
20
+ mkdir -p /io/lib/skyapi/wheelhouse
21
+
20
22
# Compile wheels
21
23
for PYBIN in /opt/python/* /bin; do
22
24
" ${PYBIN} /pip" install -r /io/lib/skyapi/requirements.txt
23
- " ${PYBIN} /pip" wheel /io/lib/skyapi/ -w wheelhouse/
25
+ " ${PYBIN} /pip" wheel /io/lib/skyapi/ -w /io/lib/skyapi/ wheelhouse/
24
26
done
25
27
26
28
# Bundle external shared libraries into the wheels
27
- for whl in wheelhouse/* .whl; do
28
- auditwheel repair " $whl " -w /io/wheelhouse/
29
+ for whl in /io/lib/skyapi/ wheelhouse/* .whl; do
30
+ auditwheel repair " $whl " -w /io/lib/skyapi/ wheelhouse/
29
31
done
30
32
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.26.0.dev1 "
19
+ VERSION = "0.26.0"
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.26.0.dev1 "
1
+ __version__ = "0.26.0"
2
2
init_error = None
3
3
4
4
def _print2stderr (msg ):
You can’t perform that action at this time.
0 commit comments