From d1bf5ec0fde863f1d957d8b819405bb89ab26bfb Mon Sep 17 00:00:00 2001 From: gagolews Date: Wed, 22 Jul 2020 22:40:43 +1000 Subject: [PATCH] v0.9.2 --- .Rbuildignore | 3 ++- .gitignore | 1 - DESCRIPTION | 2 +- NEWS | 2 +- docs/_sources/index.rst.txt | 2 +- docs/genieclust_plots-1.pdf | Bin 8288 -> 8288 bytes docs/genieclust_plots-2.pdf | Bin 12135 -> 12135 bytes docs/genieclust_plots-3.pdf | Bin 7168 -> 7168 bytes docs/genieclust_plots-4.pdf | Bin 8830 -> 8830 bytes docs/index.html | 2 +- genieclust/__init__.py | 2 +- setup.py | 4 ++-- 12 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.Rbuildignore b/.Rbuildignore index b77f6c60..acee9471 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -22,5 +22,6 @@ ^MANIFEST ^requirements\.txt$ ^LICENSE$ -^coverage\.xml$ +^coverage ^\.coverage +^codecov diff --git a/.gitignore b/.gitignore index e2fab314..1873345f 100644 --- a/.gitignore +++ b/.gitignore @@ -19,4 +19,3 @@ devel/sphinx/_api cache-* coverage.xml .coverage - diff --git a/DESCRIPTION b/DESCRIPTION index 4eda2c88..2f9447b6 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -2,7 +2,7 @@ Package: genieclust Type: Package Title: The Genie++ Hierarchical Clustering Algorithm with Noise Points Detection Version: 0.9.2 -Date: 2020-07-18 +Date: 2020-07-22 Authors@R: c( person("Marek", "Gagolewski", role = c("aut", "cre"), diff --git a/NEWS b/NEWS index d26facb6..9841ebe2 100644 --- a/NEWS +++ b/NEWS @@ -1,7 +1,7 @@ # `genieclust` Package NEWS -## genieclust 0.9.2 (under development) +## genieclust 0.9.2 (2020-07-22) - [BUGFIX] [PYTHON] Fixed broken build script for OS X with no OpenMP. diff --git a/docs/_sources/index.rst.txt b/docs/_sources/index.rst.txt index e2ce781a..7a0c6081 100644 --- a/docs/_sources/index.rst.txt +++ b/docs/_sources/index.rst.txt @@ -6,7 +6,7 @@ `genieclust`: Fast and Robust Hierarchical Clustering with Noise Point Detection ================================================================================ - **Genie finds meaningful clusters and is fast even for large data sets.** + **Genie finds meaningful clusters and is fast even on large data sets.** -- by `Marek Gagolewski `_ diff --git a/docs/genieclust_plots-1.pdf b/docs/genieclust_plots-1.pdf index b1bf209d0df1dc094e7bf5eeb9813800b6e07d04..12d1f1c001cd2373d30e737c5421e04be05386fc 100644 GIT binary patch delta 21 bcmaFh@W5fiGFc8IATYKxFxb3Kb`ui-Te}B> delta 21 dcmaFh@W5fiGFc8o3nN1#b0hQ3>tr`E0RUVJ2aEs! diff --git a/docs/genieclust_plots-2.pdf b/docs/genieclust_plots-2.pdf index 9ed27c46217ae1f29537dba68e2f34ad3e4ca171..f1ef324395fd85f09889095bde43bb40c66855b6 100644 GIT binary patch delta 21 bcmaDJ_dITcj5dc65Exq;7;aY4c4h$pR;31L delta 21 ccmaDJ_dITcj5dd%g^{6=xsmy16>Vo009Nk?aR2}S diff --git a/docs/genieclust_plots-3.pdf b/docs/genieclust_plots-3.pdf index 1db61b99a678e05adbc8dae1a50408b1ab82886e..d0b1b69438ba4ca03f1edb97789afe55796c5656 100644 GIT binary patch delta 21 acmZp$Xt3CjC&^(11jd#IhMUVIyO;n*nFbR8 delta 21 ccmZp$Xt3CjC&^)GVPt4zZe+2!OtOm!07mHs9RL6T diff --git a/docs/genieclust_plots-4.pdf b/docs/genieclust_plots-4.pdf index 7d7b4a8e7182e0ab807dbf252e95f45eb259a170..260bf3d9f4d3730525a246b1aa3b781972f2f10e 100644 GIT binary patch delta 21 bcmez8^3P?%4S5bDATYKxFx>n=ejXD5WbFtW delta 21 dcmez8^3P?%4S5bj3nN1#b0dq*59H@D0RUw^2qgdj diff --git a/docs/index.html b/docs/index.html index a233f161..f0b4fbba 100644 --- a/docs/index.html +++ b/docs/index.html @@ -178,7 +178,7 @@

genieclust: Fast and Robust Hierarchical Clustering with Noise Point Detection

-

Genie finds meaningful clusters and is fast even for large data sets.

+

Genie finds meaningful clusters and is fast even on large data sets.

—by Marek Gagolewski

A faster and more powerful version of Genie 1 — a robust and outlier resistant diff --git a/genieclust/__init__.py b/genieclust/__init__.py index d32c0dd9..354c6030 100644 --- a/genieclust/__init__.py +++ b/genieclust/__init__.py @@ -21,4 +21,4 @@ from . import internal from .genie import Genie, GIc -__version__ = '0.9.2.dev0' # see also ../setup.py +__version__ = '0.9.2' # see also ../setup.py diff --git a/setup.py b/setup.py index 0c9ac34a..b3ba0fe1 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ def build_extensions(self): for e in self.extensions: e.extra_compile_args += ['-openmp', '-std=c++11'] e.extra_link_args += ['-openmp'] - elif sys.platform == "darwin": # and 'openmp' in os.getenv('CPPFLAGS', ''): + elif sys.platform == "darwin": # and 'openmp' in os.getenv('CPPFLAGS', ''): # -fopenmp can't be passed as compile flag when using Apple-clang. # OpenMP support has to be enabled during preprocessing. # @@ -128,7 +128,7 @@ def build_extensions(self): setuptools.setup( name="genieclust", - version="0.9.2.dev0", # see also genieclust/__init__.py + version="0.9.2", # see also genieclust/__init__.py description="The Genie++ Hierarchical Clustering Algorithm (with Extras)", long_description=long_description, long_description_content_type="text/x-rst",