Skip to content

Commit

Permalink
v0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gagolews committed Jul 22, 2020
1 parent 0b54122 commit d1bf5ec
Show file tree
Hide file tree
Showing 12 changed files with 9 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
^MANIFEST
^requirements\.txt$
^LICENSE$
^coverage\.xml$
^coverage
^\.coverage
^codecov
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,3 @@ devel/sphinx/_api
cache-*
coverage.xml
.coverage

2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
2 changes: 1 addition & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -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.

Expand Down
2 changes: 1 addition & 1 deletion docs/_sources/index.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 <https://www.gagolewski.com/>`_

Expand Down
Binary file modified docs/genieclust_plots-1.pdf
Binary file not shown.
Binary file modified docs/genieclust_plots-2.pdf
Binary file not shown.
Binary file modified docs/genieclust_plots-3.pdf
Binary file not shown.
Binary file modified docs/genieclust_plots-4.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
<div class="section" id="genieclust-fast-and-robust-hierarchical-clustering-with-noise-point-detection">
<h1><cite>genieclust</cite>: Fast and Robust Hierarchical Clustering with Noise Point Detection<a class="headerlink" href="#genieclust-fast-and-robust-hierarchical-clustering-with-noise-point-detection" title="Permalink to this headline"></a></h1>
<blockquote>
<div><p><strong>Genie finds meaningful clusters and is fast even for large data sets.</strong></p>
<div><p><strong>Genie finds meaningful clusters and is fast even on large data sets.</strong></p>
<p class="attribution">—by <a class="reference external" href="https://www.gagolewski.com/">Marek Gagolewski</a></p>
</div></blockquote>
<p>A faster and more powerful version of <strong>Genie</strong> <a class="footnote-reference brackets" href="#id4" id="id1">1</a> — a robust and outlier resistant
Expand Down
2 changes: 1 addition & 1 deletion genieclust/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit d1bf5ec

Please sign in to comment.