Skip to content

Commit 0bd4673

Browse files
Release 0.3.0 (#26)
* fixes * commed mypy * c22 * transform no longer requires y * fixes * fixes * fixes * v0.3.0 * yml
1 parent 518f0a1 commit 0bd4673

File tree

5 files changed

+17
-3
lines changed

5 files changed

+17
-3
lines changed
File renamed without changes.

MANIFEST.in

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
recursive-include docs *
12
recursive-include tsml *.py
23
recursive-include tsml/datasets *.ts
4+
include .coveragerc
35
include LICENSE
6+
include MANIFEST.in
7+
include pyproject.toml
8+
include README.md
9+
10+
recursive-exclude .github *
11+
recursive-exclude build_tools *
12+
exclude .codecov.yml
13+
exclude .gitattributes
14+
exclude .gitignore
15+
exclude .pre-commit-config.yaml
16+
exclude .readthedocs.yml
17+
exclude sweep.yaml

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
A toolkit for time series machine learning algorithms.
1515

16-
The current release of `tsml` is v0.2.1.
16+
The current release of `tsml` is v0.3.0.
1717

1818
## Installation
1919

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

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

tsml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""tsml."""
22

3-
__version__ = "0.2.1"
3+
__version__ = "0.3.0"

0 commit comments

Comments
 (0)