Skip to content

Commit 22ead38

Browse files
Fix cirq version in setup. (#705)
1 parent 4e34a5a commit 22ead38

File tree

11 files changed

+12
-12
lines changed

11 files changed

+12
-12
lines changed

docs/tutorials/barren_plateaus.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
},
121121
"outputs": [],
122122
"source": [
123-
"!pip install tensorflow-quantum==0.7.1"
123+
"!pip install tensorflow-quantum==0.7.2"
124124
]
125125
},
126126
{

docs/tutorials/gradients.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
},
123123
"outputs": [],
124124
"source": [
125-
"!pip install tensorflow-quantum==0.7.1"
125+
"!pip install tensorflow-quantum==0.7.2"
126126
]
127127
},
128128
{

docs/tutorials/hello_many_worlds.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
},
121121
"outputs": [],
122122
"source": [
123-
"!pip install tensorflow-quantum==0.7.1"
123+
"!pip install tensorflow-quantum==0.7.2"
124124
]
125125
},
126126
{

docs/tutorials/mnist.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
},
121121
"outputs": [],
122122
"source": [
123-
"!pip install tensorflow-quantum==0.7.1"
123+
"!pip install tensorflow-quantum==0.7.2"
124124
]
125125
},
126126
{

docs/tutorials/noise.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@
106106
"id": "J2CRbYRqrLdt"
107107
},
108108
"source": [
109-
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.1"
109+
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.2"
110110
],
111111
"execution_count": null,
112112
"outputs": []

docs/tutorials/qcnn.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
},
123123
"outputs": [],
124124
"source": [
125-
"!pip install tensorflow-quantum==0.7.1"
125+
"!pip install tensorflow-quantum==0.7.2"
126126
]
127127
},
128128
{

docs/tutorials/quantum_data.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@
111111
}
112112
],
113113
"source": [
114-
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.1"
114+
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.2"
115115
]
116116
},
117117
{

docs/tutorials/quantum_reinforcement_learning.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
},
144144
"outputs": [],
145145
"source": [
146-
"!pip install tensorflow-quantum==0.7.1"
146+
"!pip install tensorflow-quantum==0.7.2"
147147
]
148148
},
149149
{

docs/tutorials/research_tools.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
},
8484
"outputs": [],
8585
"source": [
86-
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.1 tensorboard_plugin_profile==2.4.0"
86+
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.2 tensorboard_plugin_profile==2.4.0"
8787
]
8888
},
8989
{

release/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ def finalize_options(self):
5151

5252

5353
REQUIRED_PACKAGES = [
54-
'cirq-core>=0.13.1', 'cirq-google>=0.13.1', 'sympy == 1.8',
54+
'cirq-core==0.13.1', 'cirq-google>=0.13.1', 'sympy == 1.8',
5555
'googleapis-common-protos==1.52.0', 'google-api-core==1.21.0',
5656
'google-auth==1.18.0', 'protobuf==3.17.3'
5757
]
5858

5959
# placed as extra to not have required overwrite existing nightly installs if
6060
# they exist.
6161
EXTRA_PACKAGES = ['tensorflow == 2.7.0']
62-
CUR_VERSION = '0.7.1'
62+
CUR_VERSION = '0.7.2'
6363

6464

6565
class BinaryDistribution(Distribution):

0 commit comments

Comments
 (0)