-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b3b348
commit 317f2a6
Showing
4 changed files
with
207 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
"""aeon toolkit.""" | ||
|
||
__version__ = "0.8.0" | ||
__version__ = "0.8.1" | ||
|
||
__all__ = ["show_versions"] | ||
|
||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "aeon" | ||
version = "0.8.0" | ||
version = "0.8.1" | ||
description = "A toolkit for conducting machine learning tasks with time series data" | ||
authors = [ | ||
{name = "aeon developers", email = "[email protected]"}, | ||
|
@@ -59,7 +59,6 @@ dependencies = [ | |
[project.optional-dependencies] | ||
all_extras = [ | ||
"cloudpickle", | ||
"dask[dataframe]<2024.3.0; python_version < '3.11'", | ||
"esig>=0.9.7,<0.9.8.3; python_version < '3.11'", | ||
"filterpy>=1.4.5", | ||
"gluonts>=0.12.4", | ||
|
@@ -79,25 +78,27 @@ all_extras = [ | |
"stumpy>=1.5.1", | ||
"tbats>=1.1.0", | ||
"tensorflow>=2.12; python_version < '3.12' and python_version >= '3.9'", | ||
"tensorflow-addons; python_version < '3.12'", | ||
"tensorflow-addons; python_version < '3.12' and python_version >= '3.9'", | ||
"torch>=1.13.1", | ||
"tsfresh>=0.20.0", | ||
"tslearn>=0.5.2", | ||
"xarray", | ||
|
||
# for some reason, a heirarchical dask test fails on some Python versions with the | ||
# later versions of pyarrow | ||
# later versions of pyarrow and dask | ||
"dask[dataframe]<2024.3.0; python_version < '3.11'", | ||
"pyarrow<12; python_version < '3.12'", | ||
"pyarrow-hotfix; python_version < '3.12'", | ||
] | ||
dl = [ | ||
"keras-self-attention", | ||
"tensorflow>=2.12; python_version < '3.12' and python_version >= '3.9'", | ||
"tensorflow-addons; python_version < '3.12'", | ||
"tensorflow-addons; python_version < '3.12' and python_version >= '3.9'", | ||
] | ||
unstable_extras = [ | ||
"mrsqm>=0.0.1,<0.1.0 ; platform_system == 'Darwin'", # requires gcc and fftw to be installed for Windows and some other OS (see http://www.fftw.org/index.html) | ||
"mrsqm>=0.0.1,<0.1.0 ; platform_system == 'Darwin' and python_version < '3.12'", # requires gcc and fftw to be installed for Windows and some other OS (see http://www.fftw.org/index.html) | ||
"pycatch22<=0.4.3", # known to fail installation on some setups | ||
"pyfftw>=0.12.0; python_version < '3.12'", # requires fftw to be installed for Windows and some other OS (see http://www.fftw.org/index.html) | ||
] | ||
dev = [ | ||
"backoff", | ||
|
@@ -107,7 +108,7 @@ dev = [ | |
"pytest-cov", | ||
"pytest-randomly", | ||
"pytest-timeout", | ||
"pytest-xdist", | ||
"pytest-xdist[psutil]", | ||
"pytest-rerunfailures", | ||
"wheel", | ||
] | ||
|
@@ -182,7 +183,7 @@ addopts = ''' | |
--durations 20 | ||
--timeout 600 | ||
--showlocals | ||
--numprocesses auto | ||
--numprocesses logical | ||
--dist worksteal | ||
--reruns 2 | ||
--only-rerun "crashed while running" | ||
|