Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
recursive-include docs *
recursive-include tsml *.py
recursive-include tsml/datasets *.ts
include .coveragerc
Expand All @@ -13,5 +12,3 @@ exclude .codecov.yml
exclude .gitattributes
exclude .gitignore
exclude .pre-commit-config.yaml
exclude .readthedocs.yml
exclude sweep.yaml
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@

# tsml-py

A toolkit for in-development time series machine learning algorithms.
A repository for in-development time series machine learning algorithms and other odd
bits by Matthew Middlehurst.

Please see [`tsml_eval`](https://github.com/time-series-machine-learning/tsml-eval) and
[`aeon`](https://github.com/aeon-toolkit/aeon) for more developed and stable packages. This package
is more of a sandbox for testing out new ideas and algorithms. It may contain some
algorithms and implementations that are not available in the other toolkits.

The current release of `tsml` is v0.4.0.
The current release of `tsml` is v0.5.0.

## Installation

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "tsml"
version = "0.4.0"
description = "A toolkit for time series machine learning algorithms."
version = "0.5.0"
description = "A development sandbox for time series machine learning algorithms."
authors = [
{name = "Matthew Middlehurst", email = "[email protected]"},
]
Expand Down
2 changes: 1 addition & 1 deletion tsml/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""tsml."""

__version__ = "0.4.0"
__version__ = "0.5.0"
Loading