Skip to content

Commit

Permalink
Fix cirq version in setup. (#705)
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelBroughton authored Jul 28, 2022
1 parent 4e34a5a commit 22ead38
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/tutorials/barren_plateaus.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
},
"outputs": [],
"source": [
"!pip install tensorflow-quantum==0.7.1"
"!pip install tensorflow-quantum==0.7.2"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/gradients.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
},
"outputs": [],
"source": [
"!pip install tensorflow-quantum==0.7.1"
"!pip install tensorflow-quantum==0.7.2"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/hello_many_worlds.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
},
"outputs": [],
"source": [
"!pip install tensorflow-quantum==0.7.1"
"!pip install tensorflow-quantum==0.7.2"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/mnist.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
},
"outputs": [],
"source": [
"!pip install tensorflow-quantum==0.7.1"
"!pip install tensorflow-quantum==0.7.2"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/noise.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"id": "J2CRbYRqrLdt"
},
"source": [
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.1"
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.2"
],
"execution_count": null,
"outputs": []
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/qcnn.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
},
"outputs": [],
"source": [
"!pip install tensorflow-quantum==0.7.1"
"!pip install tensorflow-quantum==0.7.2"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/quantum_data.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@
}
],
"source": [
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.1"
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.2"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/quantum_reinforcement_learning.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
},
"outputs": [],
"source": [
"!pip install tensorflow-quantum==0.7.1"
"!pip install tensorflow-quantum==0.7.2"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/research_tools.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
},
"outputs": [],
"source": [
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.1 tensorboard_plugin_profile==2.4.0"
"!pip install tensorflow==2.7.0 tensorflow-quantum==0.7.2 tensorboard_plugin_profile==2.4.0"
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions release/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ def finalize_options(self):


REQUIRED_PACKAGES = [
'cirq-core>=0.13.1', 'cirq-google>=0.13.1', 'sympy == 1.8',
'cirq-core==0.13.1', 'cirq-google>=0.13.1', 'sympy == 1.8',
'googleapis-common-protos==1.52.0', 'google-api-core==1.21.0',
'google-auth==1.18.0', 'protobuf==3.17.3'
]

# placed as extra to not have required overwrite existing nightly installs if
# they exist.
EXTRA_PACKAGES = ['tensorflow == 2.7.0']
CUR_VERSION = '0.7.1'
CUR_VERSION = '0.7.2'


class BinaryDistribution(Distribution):
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_quantum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,4 @@
del core
# pylint: enable=undefined-variable

__version__ = '0.7.1'
__version__ = '0.7.2'

0 comments on commit 22ead38

Please sign in to comment.