Skip to content

Commit 4ffc86d

Browse files
authoredMay 30, 2018
Merge pull request #396 from gustafsson/bump-tensorflow-1.8
conda-forge doesn't have tensorflow=1.7.0, but it does have 1.8.0
2 parents 25753b2 + 84a084b commit 4ffc86d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed
 

‎deps/build.jl

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using PyCall
22
using Conda
33

4-
const cur_version = "1.7.0"
5-
const cur_py_version = "1.7.0"
4+
const cur_version = "1.8.0"
5+
const cur_py_version = "1.8.0"
66

77

88

@@ -39,8 +39,8 @@ end
3939

4040
if PyCall.conda
4141
Conda.add_channel("conda-forge")
42-
Conda.add("tensorflow=" * cur_py_version)
4342
Conda.add("tensorboard=" * cur_py_version)
43+
Conda.add("tensorflow=" * cur_py_version)
4444
else
4545
try
4646
pyimport("tensorflow")
@@ -106,4 +106,3 @@ end
106106
mv("$lib_dir/libtensorflow.so", "usr/bin/libtensorflow.so", remove_destination=true)
107107
mv("$lib_dir/libtensorflow_framework.so", "usr/bin/libtensorflow_framework.so", remove_destination=true)
108108
end
109-

0 commit comments

Comments
 (0)
Please sign in to comment.