Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Relax TensorFlow Requirement (#3281)
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyRoseman authored Aug 5, 2020
1 parent 24c5102 commit 25ff85d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,9 +182,9 @@ def do_not_install(require):
if sys.platform == "darwin":
install_requires.append("tensorflow >= 2.0.0")
else:
# ST, OD, AC and DC segfault on Linux with TensorFlow 2.1
# ST, OD, AC and DC segfault on Linux with TensorFlow 2.1.0 and 2.1.1
# See: https://github.com/apple/turicreate/issues/3003
install_requires.append("tensorflow >= 2.0.0,<= 2.0.1 ")
install_requires.append("tensorflow >= 2.0.0,!= 2.1.0,!= 2.1.1")

setup(
name="turicreate",
Expand Down

0 comments on commit 25ff85d

Please sign in to comment.