Skip to content

Commit e566f71

Browse files
release (#68)
1 parent 0f3156c commit e566f71

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

MANIFEST.in

-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
recursive-include docs *
21
recursive-include tsml *.py
32
recursive-include tsml/datasets *.ts
43
include .coveragerc
@@ -13,5 +12,3 @@ exclude .codecov.yml
1312
exclude .gitattributes
1413
exclude .gitignore
1514
exclude .pre-commit-config.yaml
16-
exclude .readthedocs.yml
17-
exclude sweep.yaml

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,15 @@
88

99
# tsml-py
1010

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

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

18-
The current release of `tsml` is v0.4.0.
19+
The current release of `tsml` is v0.5.0.
1920

2021
## Installation
2122

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "tsml"
7-
version = "0.4.0"
8-
description = "A toolkit for time series machine learning algorithms."
7+
version = "0.5.0"
8+
description = "A development sandbox for time series machine learning algorithms."
99
authors = [
1010
{name = "Matthew Middlehurst", email = "m.b.middlehurst@soton.ac.uk"},
1111
]

tsml/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""tsml."""
22

3-
__version__ = "0.4.0"
3+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)