-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed build error on Solaris: _X is a reserved keyword
- Loading branch information
Showing
51 changed files
with
851 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,6 +95,7 @@ any contributions are welcome. | |
|
||
genieclust | ||
rapi | ||
news | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
What’s New in *genieclust* | ||
========================== | ||
|
||
genieclust 0.9.8 (2021-01-08) | ||
----------------------------- | ||
|
||
- [Bugfix] [R] Fixed build errors on Solaris: ``_X`` is a reserved | ||
identifier. | ||
|
||
genieclust 0.9.7 (2021-01-07) | ||
----------------------------- | ||
|
||
- [Python] Python >= 3.7 is now required (implied by ``numpy``). | ||
|
||
- [R] Use ``RcppMLPACK`` directly instead of via a wrapper, | ||
``emstreeR``. | ||
|
||
genieclust 0.9.6 (2021-01-05) | ||
----------------------------- | ||
|
||
- [Python] Python >= 3.7 is now required (implied by ``numpy``). | ||
|
||
genieclust 0.9.5 (2021-01-04) | ||
----------------------------- | ||
|
||
- [Python] ``nmslib`` is now required. | ||
|
||
- [R] Switched to ``tinytest`` for unit testing. | ||
|
||
- [R] Fixed the examples that relied on the amended API of | ||
``emstreeR``. | ||
|
||
genieclust 0.9.4 (2020-07-31) | ||
----------------------------- | ||
|
||
- [Bugfix] [R] Fix build on Solaris. | ||
|
||
genieclust 0.9.3 (2020-07-25) | ||
----------------------------- | ||
|
||
- [Bugfix] [Python] Code coverage CI added. Fixed some minor | ||
inconsistencies. Automated the ``bdist`` build chain. | ||
|
||
- [R] Updated DESCRIPTION to meet the CRAN policies. | ||
|
||
genieclust 0.9.2 (2020-07-22) | ||
----------------------------- | ||
|
||
- [BUGFIX] [Python] Fixed broken build script for OS X with no OpenMP. | ||
|
||
genieclust 0.9.1 (2020-07-18) | ||
----------------------------- | ||
|
||
- [General] The package has been completely rewritten. The core | ||
functionality is now implemented in C++ (with OpenMP). | ||
|
||
- [General] Clustering with respect to HDBSCAN*-like mutual | ||
reachability distances is supported. | ||
|
||
- [General] The parallelised Jarnik-Prim algorithm now supports | ||
on-the-fly distance computations. Euclidean minimum spanning tree can | ||
be determined with ``mlpack``, which is much faster in | ||
low-dimensional spaces. | ||
|
||
- [R] R version is now available. | ||
|
||
- [Python] [Experimental] The GIc algorithm proposed by Anna Cena in | ||
her 2018 PhD thesis was added. | ||
|
||
- [Python] Approximate version based on nearest neighbour graphs | ||
produced by ``nmslib`` was added. | ||
|
||
genieclust 0.1a2 (2018-05-23) | ||
----------------------------- | ||
|
||
- [Python] Initial PyPI release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -95,6 +95,7 @@ any contributions are welcome. | |
|
||
genieclust | ||
rapi | ||
news | ||
|
||
.. toctree:: | ||
:maxdepth: 2 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
What’s New in *genieclust* | ||
========================== | ||
|
||
genieclust 0.9.8 (2021-01-08) | ||
----------------------------- | ||
|
||
- [Bugfix] [R] Fixed build errors on Solaris: ``_X`` is a reserved | ||
identifier. | ||
|
||
genieclust 0.9.7 (2021-01-07) | ||
----------------------------- | ||
|
||
- [Python] Python >= 3.7 is now required (implied by ``numpy``). | ||
|
||
- [R] Use ``RcppMLPACK`` directly instead of via a wrapper, | ||
``emstreeR``. | ||
|
||
genieclust 0.9.6 (2021-01-05) | ||
----------------------------- | ||
|
||
- [Python] Python >= 3.7 is now required (implied by ``numpy``). | ||
|
||
genieclust 0.9.5 (2021-01-04) | ||
----------------------------- | ||
|
||
- [Python] ``nmslib`` is now required. | ||
|
||
- [R] Switched to ``tinytest`` for unit testing. | ||
|
||
- [R] Fixed the examples that relied on the amended API of | ||
``emstreeR``. | ||
|
||
genieclust 0.9.4 (2020-07-31) | ||
----------------------------- | ||
|
||
- [Bugfix] [R] Fix build on Solaris. | ||
|
||
genieclust 0.9.3 (2020-07-25) | ||
----------------------------- | ||
|
||
- [Bugfix] [Python] Code coverage CI added. Fixed some minor | ||
inconsistencies. Automated the ``bdist`` build chain. | ||
|
||
- [R] Updated DESCRIPTION to meet the CRAN policies. | ||
|
||
genieclust 0.9.2 (2020-07-22) | ||
----------------------------- | ||
|
||
- [BUGFIX] [Python] Fixed broken build script for OS X with no OpenMP. | ||
|
||
genieclust 0.9.1 (2020-07-18) | ||
----------------------------- | ||
|
||
- [General] The package has been completely rewritten. The core | ||
functionality is now implemented in C++ (with OpenMP). | ||
|
||
- [General] Clustering with respect to HDBSCAN*-like mutual | ||
reachability distances is supported. | ||
|
||
- [General] The parallelised Jarnik-Prim algorithm now supports | ||
on-the-fly distance computations. Euclidean minimum spanning tree can | ||
be determined with ``mlpack``, which is much faster in | ||
low-dimensional spaces. | ||
|
||
- [R] R version is now available. | ||
|
||
- [Python] [Experimental] The GIc algorithm proposed by Anna Cena in | ||
her 2018 PhD thesis was added. | ||
|
||
- [Python] Approximate version based on nearest neighbour graphs | ||
produced by ``nmslib`` was added. | ||
|
||
genieclust 0.1a2 (2018-05-23) | ||
----------------------------- | ||
|
||
- [Python] Initial PyPI release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.