Skip to content

Commit

Permalink
Merge branch 'main' into math411-patch-4
Browse files Browse the repository at this point in the history
  • Loading branch information
AbeCoull authored Jun 3, 2024
2 parents 953af27 + 1c64c85 commit 7d3c824
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v1.27.4 (2024-06-03)

### Bug Fixes and Other Changes

* Update autoray to >= 0.6.11

## v1.27.3 (2024-05-14)

### Bug Fixes and Other Changes
Expand Down
6 changes: 3 additions & 3 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,<2.13.0"
TF_VERSION = "tensorflow-macos>=2.14.0,<2.15.0"
else:
TF_VERSION = "tensorflow>=2.12.0,<2.13.0"
TF_VERSION = "tensorflow>=2.14.0,<2.15.0"

setup(
name="amazon-braket-pennylane-plugin",
Expand All @@ -35,7 +35,7 @@
package_dir={"": "src"},
install_requires=[
"amazon-braket-sdk>=1.47.0",
"autoray<0.6.10",
"autoray>=0.6.11",
"pennylane>=0.34.0",
],
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion src/braket/pennylane_plugin/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
Version number (major.minor.patch[-label])
"""

__version__ = "1.27.4.dev0"
__version__ = "1.27.5.dev0"

0 comments on commit 7d3c824

Please sign in to comment.