Skip to content
This repository has been archived by the owner on Sep 29, 2022. It is now read-only.

Tensorflow version 0.7.0 recipe #600

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions python/tensorflow/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

if [ `uname` == Darwin ]; then
if [ "$PY_VER" == "2.7" ]; then
pip install https://storage.googleapis.com/tensorflow/mac/tensorflow-0.6.0-py2-none-any.whl
pip install --no-deps https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp27-none-any.whl
else
pip install https://storage.googleapis.com/tensorflow/mac/tensorflow-0.6.0-py3-none-any.whl
pip install --no-deps https://storage.googleapis.com/tensorflow/mac/tensorflow-0.7.1-cp35-none-any.whl
fi
fi

if [ `uname` == Linux ]; then
if [ "$PY_VER" == "2.7" ]; then
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.6.0-cp27-none-linux_x86_64.whl
pip install --no-deps https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp27-none-linux_x86_64.whl
else
pip install https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.6.0-cp34-none-linux_x86_64.whl
pip install --no-deps https://storage.googleapis.com/tensorflow/linux/cpu/tensorflow-0.7.1-cp34-none-linux_x86_64.whl
fi
fi
21 changes: 14 additions & 7 deletions python/tensorflow/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,25 +1,32 @@
package:
name: tensorflow
version: "0.6.0"
version: "0.7.1"

build:
number: 1
number: 0
# Google only supplies 0.7.1 whl files for Linux Python 2.7 and 3.4
# and OS X Python 2.7 and 3.5
skip: True # [win]
skip: True # [py26]
skip: True # [py33]
skip: True # [py35 and linux]
skip: True # [py34 and osx]
entry_points:
- tensorboard = tensorflow.tensorboard.tensorboard:main

requirements:
build:
- python
- pip
- numpy >=1.8.2
- numpy >=1.10.1
- protobuf ==3.0.0b2
- six >=1.10.0
- wheel >=0.26
- protobuf ==3.0.0a3
- wheel
run:
- python
- numpy >=1.8.2
- numpy >=1.10.1
- protobuf ==3.0.0b2
- six >=1.10.0
- protobuf ==3.0.0a3

test:
imports:
Expand Down