From dce94e38e5a92418d59e5c8522ced5603d48fa51 Mon Sep 17 00:00:00 2001 From: stephenhky Date: Wed, 18 Jul 2018 22:22:54 -0400 Subject: [PATCH] release 0.1.3 --- README.md | 1 + docs/conf.py | 2 +- docs/index.rst | 2 +- docs/news.rst | 1 + setup.py | 5 +++-- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3e0b158..5403c89 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,7 @@ the simplicial complexes are, and how homologies are defined: ## News +* 07/18/2018: `mogutda` 0.1.3 released. * 07/02/2018: `mogutda` 0.1.2 released. * 06/13/2018: `mogutda` 0.1.1 released. * 06/11/2018: `mogutda` 0.1.0 released. diff --git a/docs/conf.py b/docs/conf.py index fd9dc57..47a094a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ # The short X.Y version. version = u'0.1' # The full version, including alpha/beta/rc tags. -release = u'0.1.2' +release = u'0.1.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index e7a2376..9f48311 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -16,7 +16,7 @@ draw some insights from them. A lot of machine learning algorithms deal with distances, which are extremely useful, but they miss the information the data may carry from their geometry. -`mogutda` runs in Python 2.7, 3.5, and 3.6. +`mogutda` runs in Python 2.7, 3.5, 3.6, and 3.7. Contents: diff --git a/docs/news.rst b/docs/news.rst index 54c337e..d8c4b23 100644 --- a/docs/news.rst +++ b/docs/news.rst @@ -1,6 +1,7 @@ News ==== +* 07/18/2018: `mogutda` 0.1.3 released. * 07/02/2018: `mogutda` 0.1.2 released. * 06/13/2018: `mogutda` 0.1.1 released. * 06/11/2018: `mogutda` 0.1.0 released. diff --git a/setup.py b/setup.py index 8a530f7..2433186 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def readme(): setup(name='mogutda', - version="0.1.2", + version="0.1.3", description="Topological Data Analysis in Python", long_description="Topological Data Analysis in Python: Simplicial Complex", classifiers=[ @@ -16,9 +16,10 @@ def readme(): "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", "License :: OSI Approved :: MIT License", ], - keywords="mogutda numerics topology", + keywords="mogutda numerics topology data", url="https://github.com/stephenhky/MoguTDA", author="Kwan-Yuet Ho", author_email="stephenhky@yahoo.com.hk",