Skip to content

Commit

Permalink
fix: constrain tensorflow version (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
shpface authored Jul 6, 2023
1 parent d7c576c commit fdaf544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
version = f.readlines()[-1].split()[-1].strip("\"'")

if platform.system() == "Darwin" and platform.machine() == "arm64":
TF_VERSION = "tensorflow-macos>=2.12.0"
TF_VERSION = "tensorflow-macos>=2.12.0,<2.13.0"
else:
TF_VERSION = "tensorflow>=2.12.0"
TF_VERSION = "tensorflow>=2.12.0,<2.13.0"

setup(
name="amazon-braket-pennylane-plugin",
Expand Down

0 comments on commit fdaf544

Please sign in to comment.