diff --git a/CHANGES b/CHANGES index ca3713cb..906ad108 100755 --- a/CHANGES +++ b/CHANGES @@ -1,12 +1,12 @@ ------------------------------------------------------------------------ -CHANGE NOTES FOR 0.9.2 (STARTED Sep 9, 2019), (RELEASED: -) +CHANGE NOTES FOR 0.9.2 (STARTED Sep 9, 2019), (RELEASED: Oct 10, 2019) ------------------------------------------------------------------------ GENERAL CHANGES: - Introduced checking of input arguments for clustering algorithm to provide human-readable errors (pyclustering.cluster). - See: + See: https://github.com/annoviko/pyclustering/issues/548 - Implemented functionality to perform Anderson-Darling test for Gaussian distribution (ccore.stats). See: https://github.com/annoviko/pyclustering/issues/550 diff --git a/PKG-INFO.rst b/PKG-INFO.rst index 47a884ea..7351b976 100755 --- a/PKG-INFO.rst +++ b/PKG-INFO.rst @@ -11,7 +11,7 @@ Linux, Windows and MacOS operating systems. Official repository: https://github.com/annoviko/pyclustering/ -Documentation: https://pyclustering.github.io/docs/0.9.1/html/ +Documentation: https://pyclustering.github.io/docs/0.9.2/html/ Dependencies ============ diff --git a/README.rst b/README.rst index 0752ec4f..6d1f40bc 100755 --- a/README.rst +++ b/README.rst @@ -15,7 +15,7 @@ Linux, Windows and MacOS operating systems. **E-Mail**: pyclustering@yandex.ru -**Documentation**: https://pyclustering.github.io/docs/0.9.1/html/index.html +**Documentation**: https://pyclustering.github.io/docs/0.9.2/html/index.html **Homepage**: https://pyclustering.github.io/ @@ -118,13 +118,13 @@ PyClustering Status =================== +----------------------+------------------------------+------------------------------------+--------------------------------+ -| Branch | master | 0.9.dev | 0.9.1.rel | +| Branch | master | 0.9.dev | 0.9.2.rel | +======================+==============================+====================================+================================+ -| Build (Linux, MacOS) | |Build Status Linux MacOS| | |Build Status Linux MacOS 0.9.dev| | |Build Status Linux 0.9.1.rel| | +| Build (Linux, MacOS) | |Build Status Linux MacOS| | |Build Status Linux MacOS 0.9.dev| | |Build Status Linux 0.9.2.rel| | +----------------------+------------------------------+------------------------------------+--------------------------------+ -| Build (Win) | |Build Status Win| | |Build Status Win 0.9.dev| | |Build Status Win 0.9.1.rel| | +| Build (Win) | |Build Status Win| | |Build Status Win 0.9.dev| | |Build Status Win 0.9.2.rel| | +----------------------+------------------------------+------------------------------------+--------------------------------+ -| Code Coverage | |Coverage Status| | |Coverage Status 0.9.dev| | |Coverage Status 0.9.1.rel| | +| Code Coverage | |Coverage Status| | |Coverage Status 0.9.dev| | |Coverage Status 0.9.2.rel| | +----------------------+------------------------------+------------------------------------+--------------------------------+ @@ -474,12 +474,12 @@ Illustrations :target: https://ci.appveyor.com/project/annoviko/pyclustering/branch/0.9.dev .. |Coverage Status 0.9.dev| image:: https://coveralls.io/repos/github/annoviko/pyclustering/badge.svg?branch=0.9.dev&ts=1 :target: https://coveralls.io/github/annoviko/pyclustering?branch=0.9.dev -.. |Build Status Linux 0.9.1.rel| image:: https://travis-ci.org/annoviko/pyclustering.svg?branch=0.9.1.rel +.. |Build Status Linux 0.9.2.rel| image:: https://travis-ci.org/annoviko/pyclustering.svg?branch=0.9.2.rel :target: https://travis-ci.org/annoviko/pyclustering -.. |Build Status Win 0.9.1.rel| image:: https://ci.appveyor.com/api/projects/status/4uly2exfp49emwn0/branch/0.9.1.rel?svg=true - :target: https://ci.appveyor.com/project/annoviko/pyclustering/branch/0.9.1.rel -.. |Coverage Status 0.9.1.rel| image:: https://coveralls.io/repos/github/annoviko/pyclustering/badge.svg?branch=0.9.1.rel&ts=1 - :target: https://coveralls.io/github/annoviko/pyclustering?branch=0.9.1.rel +.. |Build Status Win 0.9.2.rel| image:: https://ci.appveyor.com/api/projects/status/4uly2exfp49emwn0/branch/0.9.2.rel?svg=true + :target: https://ci.appveyor.com/project/annoviko/pyclustering/branch/0.9.2.rel +.. |Coverage Status 0.9.2.rel| image:: https://coveralls.io/repos/github/annoviko/pyclustering/badge.svg?branch=0.9.2.rel&ts=1 + :target: https://coveralls.io/github/annoviko/pyclustering?branch=0.9.2.rel .. |Download Counter| image:: https://pepy.tech/badge/pyclustering :target: https://pepy.tech/project/pyclustering .. |JOSS| image:: http://joss.theoj.org/papers/10.21105/joss.01230/status.svg diff --git a/pyclustering/__init__.py b/pyclustering/__init__.py index e41c07ea..c3fbe9f5 100755 --- a/pyclustering/__init__.py +++ b/pyclustering/__init__.py @@ -1,7 +1,7 @@ """! -@brief PyClustering module that consists of general modules related to clustering, graph coloring, containers, neural - networks, oscillatory networks. +@brief PyClustering module that consists of general modules related to clustering, graph coloring, containers, + oscillatory networks. @authors Andrei Novikov (pyclustering@yandex.ru) @date 2014-2019 diff --git a/setup.py b/setup.py index 1d042e5b..4c266171 100755 --- a/setup.py +++ b/setup.py @@ -32,20 +32,20 @@ def load_readme(): with open(readme_file) as file_descr: return file_descr.read() - return "pyclustering is a python data mining library (clustering, oscillatory networks, neural networks)" + return "pyclustering is a python data mining library (cluster-analysis, graph coloring, oscillatory networks)" setup( name='pyclustering', packages=find_packages(), - version='0.9.1', + version='0.9.2', description='pyclustring is a python data mining library', long_description=load_readme(), url='https://github.com/annoviko/pyclustering', project_urls={ 'Homepage': 'https://pyclustering.github.io/', 'Repository': 'https://github.com/annoviko/pyclustering', - 'Documentation': 'https://codedocs.xyz/annoviko/pyclustering/', + 'Documentation': 'https://pyclustering.github.io/docs/0.9.2/html/index.html', 'Bug Tracker': 'https://github.com/annoviko/pyclustering/issues' }, license='GNU Public License',