Skip to content

Commit

Permalink
Merge pull request #396 from gustafsson/bump-tensorflow-1.8
Browse files Browse the repository at this point in the history
conda-forge doesn't have tensorflow=1.7.0, but it does have 1.8.0
  • Loading branch information
oxinabox authored May 30, 2018
2 parents 25753b2 + 84a084b commit 4ffc86d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions deps/build.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using PyCall
using Conda

const cur_version = "1.7.0"
const cur_py_version = "1.7.0"
const cur_version = "1.8.0"
const cur_py_version = "1.8.0"



Expand Down Expand Up @@ -39,8 +39,8 @@ end

if PyCall.conda
Conda.add_channel("conda-forge")
Conda.add("tensorflow=" * cur_py_version)
Conda.add("tensorboard=" * cur_py_version)
Conda.add("tensorflow=" * cur_py_version)
else
try
pyimport("tensorflow")
Expand Down Expand Up @@ -106,4 +106,3 @@ end
mv("$lib_dir/libtensorflow.so", "usr/bin/libtensorflow.so", remove_destination=true)
mv("$lib_dir/libtensorflow_framework.so", "usr/bin/libtensorflow_framework.so", remove_destination=true)
end

0 comments on commit 4ffc86d

Please sign in to comment.