Skip to content

Commit

Permalink
ci: install graphviz dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
mrossinek committed Sep 10, 2024
1 parent 5bffa78 commit 214800b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/test_development_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
"qiskit @ git+https://github.com/Qiskit/qiskit.git" \
"qiskit-ibm-runtime @ git+https://github.com/Qiskit/qiskit-ibm-runtime.git" \
--inplace
- name: Install binary dependencies
run: |
sudo apt-get install -y graphviz
- name: Test using tox environment
shell: bash
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test_latest_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install tox
- name: Install binary dependencies
run: |
sudo apt-get install -y graphviz
- name: Test using tox environment
shell: bash
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/test_minimum_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ jobs:
python -m pip install extremal-python-dependencies==0.0.3
pip install "tox==$(extremal-python-dependencies get-tox-minversion)"
extremal-python-dependencies pin-dependencies-to-minimum --inplace
- name: Install binary dependencies
run: |
sudo apt-get install -y graphviz
- name: Test using tox environment
shell: bash
run: |
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ lint = [
]
notebook-dependencies = [
"qiskit-addon-mpf",
"rustworkx>=0.15",
"rustworkx[graphviz]>=0.15",
"qiskit-addon-utils",
"matplotlib",
"ipywidgets",
Expand Down

0 comments on commit 214800b

Please sign in to comment.