From ed925ed2068623ea4bacc539084deda1ebf95344 Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent Date: Mon, 14 Dec 2020 11:27:14 +0100 Subject: Release note 3.4.0 --- .github/next_release.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/next_release.md b/.github/next_release.md index 7e7fe03b..96886627 100644 --- a/.github/next_release.md +++ b/.github/next_release.md @@ -9,8 +9,9 @@ Below is a list of changes made since GUDHI 3.3.0: - [Alpha complex](https://gudhi.inria.fr/doc/latest/group__alpha__complex.html) - the C++ weighted version for alpha complex is now available in dimension D. -- [Module](link) - - ... +- Simplex tree [C++](https://gudhi.inria.fr/doc/latest/class_gudhi_1_1_simplex__tree.html) [Python](http://gudhi.gforge.inria.fr/python/latest/simplex_tree_ref.html) + - A new method to reset the filtrations + - A new method to get the boundaries of a simplex - [Subsampling](https://gudhi.inria.fr/doc/latest/group__subsampling.html) - The C++ function `choose_n_farthest_points()` now takes a distance function instead of a kernel as first argument, users can replace `k` with `k.squared_distance_d_object()` in each call in their code. -- cgit v1.2.3 From 8a6f8fab73050a540b8b21e580b697f172165399 Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent Date: Mon, 14 Dec 2020 11:31:36 +0100 Subject: teasing --- .github/next_release.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/next_release.md b/.github/next_release.md index 96886627..d8f53f0f 100644 --- a/.github/next_release.md +++ b/.github/next_release.md @@ -1,6 +1,6 @@ We are pleased to announce the release 3.4.0 of the GUDHI library. -As a major new feature, the GUDHI library now offers dD weighted alpha complex, ... +As a major new feature, the GUDHI library now offers dD weighted alpha complex, pip and conda packages for Python 3.9. We are now using GitHub to develop the GUDHI library, do not hesitate to [fork the GUDHI project on GitHub](https://github.com/GUDHI/gudhi-devel). From a user point of view, we recommend to download GUDHI user version (gudhi.3.4.0.tar.gz). -- cgit v1.2.3 From 5c9cf5fbb2d6fabbacf67a53d250d53d3d0c3899 Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent Date: Mon, 14 Dec 2020 15:29:14 +0100 Subject: Fix sphinx warning and doc identation --- src/python/gudhi/simplex_tree.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/python/gudhi/simplex_tree.pyx b/src/python/gudhi/simplex_tree.pyx index 665d41e6..d7991417 100644 --- a/src/python/gudhi/simplex_tree.pyx +++ b/src/python/gudhi/simplex_tree.pyx @@ -629,7 +629,7 @@ cdef class SimplexTree: :type nb_iterations: int :note: collapse_edges method requires `Eigen `_ >= 3.1.0 and an exception is thrown - if this method is not available. + if this method is not available. """ # Backup old pointer cdef Simplex_tree_interface_full_featured* ptr = self.get_ptr() -- cgit v1.2.3 From 34e95e0853daa3dd897f08824cebc8ca77d5cef9 Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent Date: Mon, 14 Dec 2020 15:29:48 +0100 Subject: Fix sphinx error on Azure and Appveyor --- src/python/doc/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/python/doc/conf.py b/src/python/doc/conf.py index 3cc5d1d6..b06baf9c 100755 --- a/src/python/doc/conf.py +++ b/src/python/doc/conf.py @@ -44,6 +44,8 @@ extensions = [ 'sphinx_paramlinks', ] +bibtex_bibfiles = ['../../biblio/bibliography.bib'] + todo_include_todos = True # plot option : do not show hyperlinks (Source code, png, hires.png, pdf) plot_html_show_source_link = False -- cgit v1.2.3