-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* added dask='allowed', and solved floating point difference in array_equal test_correlation and test_correlation_with_dim * added dask='allowed', and solved floating point difference in array_equal test_correlation and test_correlation_with_dim * Added allow_rechuck is True * allow rechuck is False * perhaps should move towards da.polyfit() to support dask.arrays * Fix linear trend so that tests do not fail on chunked data * Fix formatting * Fix remaining typing errors * Remove commented out code and more formatting * Update changelog and citation information * Remove dask as dependency * Add dask back in * Fix citation and changelog. --------- Co-authored-by: semvijverberg <[email protected]>
- Loading branch information
1 parent
caa43e3
commit 3a67444
Showing
11 changed files
with
45 additions
and
16 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,14 +11,15 @@ license = "Apache-2.0" | |
requires-python = ">3.8,<3.12" | ||
authors = [ | ||
{email = "[email protected]"}, | ||
{name = "Yang Liu, Bart Schilperoort, Peter Kalverla, Jannes van Ingen, Sem Vijverberg"} | ||
{name = "Yang Liu, Bart Schilperoort, Peter Kalverla, Jannes van Ingen, Sem Vijverberg, Claire Donnelly"} | ||
] | ||
maintainers = [ | ||
{name = "Yang Liu", email = "[email protected]"}, | ||
{name = "Bart Schilperoort", email = "[email protected]"}, | ||
{name = "Peter Kalverla", email = "[email protected]"}, | ||
{name = "Jannes van Ingen", email = "[email protected]"}, | ||
{name = "Sem Vijverberg", email = "[email protected]"}, | ||
{name = "Claire Donnelly", email = "[email protected]"}, | ||
] | ||
keywords = [ | ||
"AI", | ||
|
@@ -35,6 +36,7 @@ classifiers = [ | |
"Programming Language :: Python :: 3.11", | ||
] | ||
dependencies = [ | ||
"dask", | ||
"lilio", | ||
"matplotlib", | ||
"netcdf4", | ||
|
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
"""Response Guided Dimensionality Reduction.""" | ||
|
||
from . import label_alignment # noqa: F401 (unused import) |
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