summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeGUDHIVersion.txt2
-rw-r--r--src/python/introduction.rst1
-rw-r--r--src/python/setup.py.in4
3 files changed, 3 insertions, 4 deletions
diff --git a/CMakeGUDHIVersion.txt b/CMakeGUDHIVersion.txt
index d344f04f..75aedb74 100644
--- a/CMakeGUDHIVersion.txt
+++ b/CMakeGUDHIVersion.txt
@@ -1,6 +1,6 @@
set (GUDHI_MAJOR_VERSION 3)
set (GUDHI_MINOR_VERSION 2)
-set (GUDHI_PATCH_VERSION 0a3)
+set (GUDHI_PATCH_VERSION 0a4)
set(GUDHI_VERSION ${GUDHI_MAJOR_VERSION}.${GUDHI_MINOR_VERSION}.${GUDHI_PATCH_VERSION})
message(STATUS "GUDHI version : ${GUDHI_VERSION}")
diff --git a/src/python/introduction.rst b/src/python/introduction.rst
index adfed36e..3e9faae9 100644
--- a/src/python/introduction.rst
+++ b/src/python/introduction.rst
@@ -1,6 +1,5 @@
.. image::
https://gudhi.inria.fr/images/gudhi_architecture.png
- :figclass: align-center
:width: 100 %
:alt: GUDHI
diff --git a/src/python/setup.py.in b/src/python/setup.py.in
index 4725bb44..f8eeafc4 100644
--- a/src/python/setup.py.in
+++ b/src/python/setup.py.in
@@ -63,7 +63,7 @@ for module in pybind11_modules:
runtime_library_dirs=runtime_library_dirs,
))
-# read the contents of introduction.md
+# read the contents of introduction.rst
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'introduction.rst'), encoding='utf-8') as f:
long_description = f.read()
@@ -83,8 +83,8 @@ setup(
},
description='The Gudhi library is an open source library for ' \
'Computational Topology and Topological Data Analysis (TDA).',
+ long_description_content_type='text/x-rst',
long_description=long_description,
- long_description_content_type='text/markdown',
ext_modules = ext_modules,
install_requires = ['cython','numpy >= 1.9',],
setup_requires = ['numpy >= 1.9','pybind11',],