Skip to content

Commit 2bf7608

Browse files
Added graphviz requirement
1 parent 5aa5f2f commit 2bf7608

File tree

3 files changed

+4
-10
lines changed

3 files changed

+4
-10
lines changed

docs/utils.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,4 @@ if mpe_model.is_solved():
4646

4747
This produces a file with extension `.pdf` storing the PDF image of the graph.
4848

49-
!!! warning "Graphviz dependency"
50-
Drawing graphs as above requires the Python package `graphviz`. Install via:
51-
``` bash
52-
pip install graphviz
53-
```
54-
55-
56-
5749
::: flowpaths.utils.graphutils

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "flowpaths"
3-
version = "0.1.19"
3+
version = "0.1.20"
44
description = "A Python package to quickly decompose weighted graphs into weights paths, under various models."
55
readme = "README.md"
66
authors = [{name="Graph Algorithms and Bioinformatics Group @ University of Helsinki, and external collaborators"}]
@@ -17,7 +17,8 @@ classifiers = [
1717
]
1818
dependencies = [
1919
"networkx",
20-
"highspy"
20+
"highspy",
21+
"graphviz",
2122
]
2223

2324
[build-system]

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
networkx>=3.4.2
22
highspy>=1.9.0
3+
graphviz>=0.20.3

0 commit comments

Comments
 (0)