Skip to content

Commit

Permalink
[Release] v0.1.1
Browse files Browse the repository at this point in the history
[Release] v0.1.1
  • Loading branch information
jermainewang committed Dec 18, 2019
2 parents 4b305de + 86dad84 commit a1fdb53
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions docker/install/ubuntu_install_conda.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@ sh /tmp/install.sh -b

CONDA_PREFIX=$HOME/miniconda3/bin
export PATH=$CONDA_PREFIX:$PATH
for PY_VER in 3.6.4 3.7.0; do
for PY_VER in 3.5 3.6 3.7; do
echo "Create conda env for python $PY_VER"
conda create -n $PY_VER -y python=$PY_VER
source activate $PY_VER
conda install -y $TF==2.0 pytest
echo conda install -y $TH -c pytorch
pip install --upgrade pip
pip install $TF==2.0
conda install -y pytest
conda install -y $TH -c pytorch
source deactivate
done
2 changes: 1 addition & 1 deletion python/tfdlpack/libinfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,4 +86,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
# We use the version of the incoming release for code
# that is under development.
# The following line is set by tfdlpack/python/update_version.py
__version__ = "0.1"
__version__ = "0.1.1"
2 changes: 1 addition & 1 deletion tests/scripts/build_in_docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ CONDA_PREFIX=$HOME/miniconda3/bin
export PATH=$CONDA_PREFIX:$PATH
export PYTHONPATH=$PWD/python:$PYTHONPATH
export TFDLPACK_LIBRARY_PATH=$PWD/build
for PY_VER in 3.6.4 3.7.0; do
for PY_VER in 3.5 3.6 3.7; do
echo "Build for python $PY_VER"
source activate $PY_VER
# clean & build
Expand Down

0 comments on commit a1fdb53

Please sign in to comment.