Skip to content

Commit

Permalink
Version bump 0.11.0 (#3882)
Browse files Browse the repository at this point in the history
- Modifies notebooks depending on unreleased features to install released version of cirq.
- Bumps up the devel version to 0.11.0
  • Loading branch information
tanujkhattar committed Mar 5, 2021
1 parent b66bb9f commit 8cef3d9
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 20 deletions.
2 changes: 1 addition & 1 deletion cirq/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
'of cirq (e.g. "python -m pip install cirq==0.5.*")'
)

__version__ = "0.10.0.dev"
__version__ = "0.11.0.dev"
4 changes: 1 addition & 3 deletions dev_tools/notebooks/isolated_notebook_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@
# these notebooks rely on features that are not released yet
# after every release we should raise a PR and empty out this list
# note that these notebooks are still tested in dev_tools/notebook_test.py
NOTEBOOKS_DEPENDING_ON_UNRELEASED_FEATURES = [
'docs/qcvv/*.ipynb',
]
NOTEBOOKS_DEPENDING_ON_UNRELEASED_FEATURES = []

# By default all notebooks should be tested, however, this list contains exceptions to the rule
# please always add a reason for skipping.
Expand Down
2 changes: 1 addition & 1 deletion docs/qcvv/isolated_xeb.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq --pre\n",
" !pip install --quiet cirq\n",
" print(\"installed cirq.\")"
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/qcvv/parallel_xeb.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq --pre\n",
" !pip install --quiet cirq\n",
" print(\"installed cirq.\")"
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/qcvv/xeb_coherent_noise.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq --pre\n",
" !pip install --quiet cirq\n",
" print(\"installed cirq.\")"
]
},
Expand Down
2 changes: 1 addition & 1 deletion docs/qcvv/xeb_theory.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install --quiet cirq --pre\n",
" !pip install --quiet cirq\n",
" print(\"installed cirq.\")"
]
},
Expand Down
11 changes: 1 addition & 10 deletions docs/tutorials/google/floquet.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -42,15 +42,6 @@
"# Floquet calibration"
]
},
{
"cell_type": "markdown",
"metadata": {
"id": "99a66c65c71f"
},
"source": [
"Note: This notebook relies on unreleased Cirq features. If you want to try these feature, make sure you install Cirq via `pip install cirq --pre`."
]
},
{
"cell_type": "markdown",
"metadata": {
Expand Down Expand Up @@ -145,7 +136,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install cirq --pre --quiet\n",
" !pip install cirq --quiet\n",
" print(\"installed cirq.\")"
]
},
Expand Down
4 changes: 2 additions & 2 deletions docs/tutorials/ionq/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"\n",
"To get started, first you must install Cirq. \n",
"\n",
"> NOTE: Currently this notebook requires the development version of Cirq 0.10 or higher."
"> NOTE: Currently this notebook requires the version of Cirq 0.10 or higher."
]
},
{
Expand All @@ -58,7 +58,7 @@
" assert int(version[0]) > 0 or int(version[1]) > 9, \"Cirq version >0.9 required\"\n",
"except (ImportError, AssertionError):\n",
" print(\"Installing Cirq...\")\n",
" !pip install --quiet --pre cirq\n",
" !pip install --quiet cirq\n",
" print(\"Cirq installed.\")"
]
},
Expand Down

0 comments on commit 8cef3d9

Please sign in to comment.