Skip to content

Commit

Permalink
Fix broken Floquet tutorial (quantumlib#4496)
Browse files Browse the repository at this point in the history
https://quantumai.google/cirq/tutorials/google/floquet_calibration_example broke after quantumlib#4286 (because it was missing a `--pre` flag).

Without the `--pre` flag this tutorial wouldn't pull in the latest changes and broke.

Added the `--pre` to fix this.
  • Loading branch information
MichaelBroughton authored and rht committed May 1, 2023
1 parent 41dbd8e commit dedb921
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/tutorials/google/floquet_calibration_example.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
" import cirq\n",
"except ImportError:\n",
" print(\"installing cirq...\")\n",
" !pip install cirq --quiet\n",
" !pip install cirq --pre --quiet\n",
" print(\"installed cirq.\")"
]
},
Expand Down

0 comments on commit dedb921

Please sign in to comment.