From 4fe4df0c55cf2c5697c0b349e73134146f201ad8 Mon Sep 17 00:00:00 2001 From: Denis Arrivault <denis.arrivault@lif.univ-mrs.fr> Date: Tue, 22 May 2018 14:44:28 +0200 Subject: [PATCH] Update History, Readme and Authors --- AUTHORS.rst | 11 ++--------- HISTORY.rst | 18 +++++++++++++----- README.rst | 2 +- VERSION | 2 +- setup.py | 2 +- splearn/__init__.py | 2 +- splearn/automaton.py | 2 +- splearn/datasets/data_sample.py | 2 +- splearn/hankel.py | 2 +- splearn/serializer.py | 2 +- splearn/spectral.py | 2 +- splearn/tests/datasets/get_dataset_path.py | 2 +- splearn/tests/test_automaton.py | 2 +- splearn/tests/test_base.py | 2 +- splearn/tests/test_data_sample.py | 2 +- splearn/tests/test_hankel.py | 2 +- splearn/tests/test_serializer.py | 2 +- splearn/tests/test_spectral.py | 2 +- 18 files changed, 31 insertions(+), 30 deletions(-) diff --git a/AUTHORS.rst b/AUTHORS.rst index dfea254..4fac823 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -1,12 +1,5 @@ -.. -*- mode: rst -*- - -History -------- - -People ------- - -.. hlist:: +Authors +======= * François Denis diff --git a/HISTORY.rst b/HISTORY.rst index ff4829e..5e84d53 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,14 +5,22 @@ History 1.0.0 (2016-06-30) ------------------ -First version +* First version 1.0.1 (2016-10-07) ------------------ -Bug setup correction +* Bug setup correction 1.1.0 (2018-15-02) ------------------ -Adding IO functions -Rebase -Dot display method \ No newline at end of file +* Adding IO functions +* Rebase +* Dot display method + +1.2.0 (2018-22-02) +------------------ +* Adding dot export for Automata +* Adding yalm and json import and export for Automata and Hankel +* Adding random SVD as an option for dense Hankel matrix calculation. +* Rebase : removing Learning class + some new functionnalities +* Update doc. diff --git a/README.rst b/README.rst index 331ef43..55b6870 100644 --- a/README.rst +++ b/README.rst @@ -19,6 +19,6 @@ This package, as well as the **scikit-splearn** toolbox, is Free software, relea The latest version of **scikit-splearn** can be downloaded from the following `PyPI page <https://pypi.python.org/pypi/scikit-splearn/>`_ . -The documentation is available as a `pythonhosted site <http://pythonhosted.org/scikit-splearn/>`_ . +The documentation is available `here <http://dev.pages.lis-lab.fr/scikit-splearn>`_ . There is also a `gitlab repository <https://gitlab.lis-lab.fr/dev/scikit-splearn.git>`_ , which provides the git repository managing the source code and where issues can be reported. diff --git a/VERSION b/VERSION index eafcb6a..a0b5f45 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -splearn:1.2.0 +splearn:1.2.1 diff --git a/setup.py b/setup.py index 9012bf4..252a246 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/__init__.py b/splearn/__init__.py index 539932b..67006d4 100644 --- a/splearn/__init__.py +++ b/splearn/__init__.py @@ -2,4 +2,4 @@ from splearn.automaton import Automaton from splearn.serializer import Serializer from splearn.spectral import Spectral from splearn.hankel import Hankel -__version__ = "1.2.0" +__version__ = "1.2.1" diff --git a/splearn/automaton.py b/splearn/automaton.py index 1a337d6..e68cfd1 100644 --- a/splearn/automaton.py +++ b/splearn/automaton.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/datasets/data_sample.py b/splearn/datasets/data_sample.py index 34f58a3..56bce06 100644 --- a/splearn/datasets/data_sample.py +++ b/splearn/datasets/data_sample.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/hankel.py b/splearn/hankel.py index 85899cc..594dfb8 100644 --- a/splearn/hankel.py +++ b/splearn/hankel.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/serializer.py b/splearn/serializer.py index 81e5981..99409a3 100644 --- a/splearn/serializer.py +++ b/splearn/serializer.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/spectral.py b/splearn/spectral.py index 3198f53..f0cddba 100644 --- a/splearn/spectral.py +++ b/splearn/spectral.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/tests/datasets/get_dataset_path.py b/splearn/tests/datasets/get_dataset_path.py index 7ce9c44..b47a65a 100644 --- a/splearn/tests/datasets/get_dataset_path.py +++ b/splearn/tests/datasets/get_dataset_path.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/tests/test_automaton.py b/splearn/tests/test_automaton.py index a09b7b5..38e6614 100644 --- a/splearn/tests/test_automaton.py +++ b/splearn/tests/test_automaton.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/tests/test_base.py b/splearn/tests/test_base.py index 973b9b4..56370a9 100644 --- a/splearn/tests/test_base.py +++ b/splearn/tests/test_base.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/tests/test_data_sample.py b/splearn/tests/test_data_sample.py index afdf3f5..5458fc5 100644 --- a/splearn/tests/test_data_sample.py +++ b/splearn/tests/test_data_sample.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/tests/test_hankel.py b/splearn/tests/test_hankel.py index da23103..447c35e 100644 --- a/splearn/tests/test_hankel.py +++ b/splearn/tests/test_hankel.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/tests/test_serializer.py b/splearn/tests/test_serializer.py index 9bc75bd..e161170 100644 --- a/splearn/tests/test_serializer.py +++ b/splearn/tests/test_serializer.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- diff --git a/splearn/tests/test_spectral.py b/splearn/tests/test_spectral.py index 3d397c7..34b0a74 100644 --- a/splearn/tests/test_spectral.py +++ b/splearn/tests/test_spectral.py @@ -24,7 +24,7 @@ # Version: # ------- # -# * splearn version = 1.2.0 +# * splearn version = 1.2.1 # # Licence: # ------- -- GitLab