From 5e3503467caf65ac7a1fe50505475cb36f98dbc9 Mon Sep 17 00:00:00 2001 From: Matthew Middlehurst Date: Wed, 13 Nov 2024 09:48:09 +0000 Subject: [PATCH] release --- MANIFEST.in | 3 --- README.md | 5 +++-- pyproject.toml | 4 ++-- tsml/__init__.py | 2 +- 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index b459cfe..28ac35a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,3 @@ -recursive-include docs * recursive-include tsml *.py recursive-include tsml/datasets *.ts include .coveragerc @@ -13,5 +12,3 @@ exclude .codecov.yml exclude .gitattributes exclude .gitignore exclude .pre-commit-config.yaml -exclude .readthedocs.yml -exclude sweep.yaml diff --git a/README.md b/README.md index fbd08e9..7609c25 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/pyproject.toml b/pyproject.toml index 7679260..3cb3db7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = "m.b.middlehurst@soton.ac.uk"}, ] diff --git a/tsml/__init__.py b/tsml/__init__.py index da155f0..90b5545 100644 --- a/tsml/__init__.py +++ b/tsml/__init__.py @@ -1,3 +1,3 @@ """tsml.""" -__version__ = "0.4.0" +__version__ = "0.5.0"