Skip to content
This repository was archived by the owner on Nov 23, 2020. It is now read-only.

Commit ca32ea3

Browse files
authored
Merge pull request #295 from quantmind/release
Release
2 parents ddd4a21 + fc84f0f commit ca32ea3

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

pulsar/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .utils.version import get_version
44

55

6-
VERSION = (2, 0, 0, 'final', 0)
6+
VERSION = (2, 0, 1, 'final', 0)
77

88

99
__version__ = version = get_version(VERSION)

pulsar/cmds/build-wheels.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
#!/bin/bash
22
set -e -x
33

4-
PIP="${PIP:-pip}"
5-
PYTHON="${PYTHON:-python}"
6-
IOPATH="${IOPATH:-$PWD}"
4+
PIP=${PIP:-pip}
5+
PYTHON=${PYTHON:-python}
6+
IOPATH=${IOPATH:-$PWD}
77
DIST=${IOPATH}/dist/
88
WHEELRE=${PYMODULE}-*-${WHEEL}_*.whl
99

1010
# Compile wheels
1111
${PIP} install --upgrade pip wheel
12-
${PIP} install --upgrade setuptools
12+
${PIP} install --upgrade setuptools cython
1313
${PIP} install -r ${IOPATH}/requirements/ci.txt
1414
${PIP} install -r ${IOPATH}/requirements/hard.txt
1515
make -C ${IOPATH} PYTHON=${PYTHON} compile
@@ -18,8 +18,8 @@ ${PIP} wheel ${IOPATH} -w ${DIST}
1818
if [ $BUNDLE_WHEEL ]
1919
then
2020
echo "Bundle external shared libraries into the wheels"
21-
for whl in ${IOPATH}/dist/*.whl; do
22-
${BUNDLE_WHEEL} repair $whl -w ${IOPATH}/dist/
21+
for whl in ${DIST}*.whl; do
22+
${BUNDLE_WHEEL} repair $whl -w ${DIST}
2323
done
2424
fi
2525

@@ -38,3 +38,4 @@ make -C ${IOPATH} PYTHON=${PYTHON} testinstalled
3838

3939
mkdir -p ${IOPATH}/wheelhouse
4040
mv ${IOPATH}/dist/*.whl ${IOPATH}/wheelhouse/
41+
make -C ${IOPATH} clean

0 commit comments

Comments
 (0)