Skip to content
This repository was archived by the owner on Aug 21, 2023. It is now read-only.

Commit 623ea20

Browse files
committed
Use metapackage visualization extra instead of terra's
Right now we're in a weird place because there is a terra release live that has some breaking changes for ignis and aqua. This shouldn't be a blocker for changes in tutorials because we should be using the latest metapackage release but because we install visualization dependencies using qiskit-terra[visualization] we're pulling in the latest terra release which hasn't been included in a metapackage yet. This causes the aqua tutorials to fail because they require the latest release. This commit fixes this by using qiskit[visualization] which won't pull in a terra version that isn't part of known working metapackage.
1 parent 95454fb commit 623ea20

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ steps:
3838
source /tmp/docs_build/bin/activate
3939
pip install -U qiskit jupyter sphinx nbsphinx sphinx_rtd_theme
4040
pip install 'matplotlib<3.3'
41-
pip install -U qiskit-terra[visualization] cvxpy
41+
pip install -U qiskit[visualization] cvxpy
4242
sudo apt-get install -y pandoc graphviz
4343
displayName: 'Install dependencies'
4444
- bash: |

0 commit comments

Comments
 (0)