diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2020-08-26 18:35:14 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2020-08-26 18:35:14 +0200 |
commit | 17dddeeee560527a8f30d37761949d658056cb09 (patch) | |
tree | 15b0b19c55787f556eb9b42c28d173bddc5435db /gnu/packages/graph.scm | |
parent | 331a09654eb7e9f6212b7e8469077fa7393e8b11 (diff) | |
parent | 6a9581741e4ee81226aeb2f1c997df76670a6aab (diff) | |
download | guix-17dddeeee560527a8f30d37761949d658056cb09.tar.gz |
Merge remote-tracking branch 'origin/master' into core-updates
Diffstat (limited to 'gnu/packages/graph.scm')
-rw-r--r-- | gnu/packages/graph.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/graph.scm b/gnu/packages/graph.scm index 65dc23588f..800b567e39 100644 --- a/gnu/packages/graph.scm +++ b/gnu/packages/graph.scm @@ -57,14 +57,14 @@ (define-public igraph (package (name "igraph") - (version "0.8.1") + (version "0.8.2") (source (origin (method url-fetch) (uri (string-append "https://github.com/igraph/igraph/releases/" "download/" version "/igraph-" version ".tar.gz")) (sha256 - (base32 "0wbvrac3ip3lqmbkckhnxa2swlbc86l1h8mazdlb618kx3winvi6")))) + (base32 "158flvl80qh1l1ikfa04p1dzh8kapsvm6q80x3ih5gwcgcg4g2ki")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -90,14 +90,13 @@ more.") (define-public python-igraph (package (inherit igraph) (name "python-igraph") - (version "0.8.0") + (version "0.8.2") (source (origin (method url-fetch) (uri (pypi-uri "python-igraph" version)) (sha256 - (base32 - "13mbrlmnbgbzw6y8ws7wj0a3ly3in8j4l1ngi6yxvgvxxi4bprj7")))) + (base32 "0wkxrs28qdvnrz7d4jzcf2bh6v2yqzx3wyfziihfgsi2gn6n60a6")))) (build-system python-build-system) (arguments '(#:configure-flags |