From 5dac9ce9955bfb4596735ef117438c4c2a299acc Mon Sep 17 00:00:00 2001 From: Matthew Middlehurst Date: Fri, 13 Oct 2023 14:40:25 +0100 Subject: [PATCH] ver and manifest update (#129) --- MANIFEST.in | 5 +++-- README.md | 2 +- pyproject.toml | 2 +- tsml_eval/__init__.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 75e94bdf..a6e10332 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,7 +2,7 @@ recursive-include docs * recursive-include examples * recursive-include results * recursive-include tsml_eval *.py -recursive-include tsml_eval/datasets *.ts +recursive-include tsml_eval/datasets *.ts *.csv recursive-exclude tsml_eval/publications *.csv *.txt *.ipynb recursive-exclude tsml_eval/utils *.csv include .coveragerc @@ -13,12 +13,13 @@ include README.md recursive-exclude .github * recursive-exclude _build_tools * -recursive-exclude _uea_experiments * +recursive-exclude _tsml_group_experiments * exclude .codecov.yml exclude .gitattributes exclude .gitignore exclude .pre-commit-config.yaml exclude .readthedocs.yml +exclude sweep.yaml # these are in _wip currently, may want to remove in the future recursive-include tsml_eval/_wip *.csv *.ipynb *.sh *.txt diff --git a/README.md b/README.md index 3d400960..c2075f7e 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ tsml-eval contains benchmarking and evaluation tools for time series machine learning algorithms. -The current release of tsml-eval is v0.1.0. +The current release of tsml-eval is v0.1.1. Installation ------------ diff --git a/pyproject.toml b/pyproject.toml index 28a73cf7..3c1a4a08 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tsml-eval" -version = "0.1.0" +version = "0.1.1" description = "A package for benchmarking time series machine learning tools." authors = [ {name = "Matthew Middlehurst", email = "m.middlehurst@uea.ac.uk"}, diff --git a/tsml_eval/__init__.py b/tsml_eval/__init__.py index d263e558..bee59854 100644 --- a/tsml_eval/__init__.py +++ b/tsml_eval/__init__.py @@ -1,3 +1,3 @@ """tsml-eval.""" -__version__ = "0.1.0" +__version__ = "0.1.1"