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
2 changes: 1 addition & 1 deletion .github/workflows/periodic_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-20.04, macos-13, windows-2022 ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/pr_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,13 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-20.04, windows-2022 ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
# skip python versions unless the PR has the 'full pytest actions' label
pr-testing:
- ${{ (github.event_name != 'pull_request' || !contains(github.event.pull_request.labels.*.name, 'full pytest actions')) }}
exclude:
- pr-testing: true
python-version: "3.9"
- pr-testing: true
python-version: "3.11"
python-version: "3.10"

steps:
- uses: actions/checkout@v4
Expand Down
12 changes: 6 additions & 6 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
recursive-include docs *
recursive-include examples *
recursive-include results *
recursive-include tsml_eval *.py
recursive-include tsml_eval/datasets *.ts *.csv *.txt
recursive-include tsml_eval/publications *.csv *.txt *.ipynb
recursive-include tsml_eval/testing/_test_eval_files *.csv *.pdf *.pickle
recursive-include tsml_eval/testing/_test_results_files *.csv
include .coveragerc
include conftest.py
include LICENSE
include MANIFEST.in
include pyproject.toml
include README.md

recursive-exclude .binder *
recursive-exclude .github *
recursive-exclude build_tools *
recursive-exclude _tsml_research_resources *
recursive-exclude build_tools *
recursive-exclude docs *
recursive-exclude examples *
recursive-exclude results *
exclude .codecov.yml
exclude .coveragerc
exclude .gitattributes
exclude .gitignore
exclude .pre-commit-config.yaml
exclude .readthedocs.yml
exclude conftest.py
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
`tsml-eval` contains benchmarking and evaluation tools for time series machine learning
algorithms.

The current release of `tsml-eval` is v0.3.0.
The current release of `tsml-eval` is v0.4.0.

## Installation

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

[project]
name = "tsml-eval"
version = "0.3.0"
version = "0.4.0"
description = "A package for benchmarking time series machine learning tools."
authors = [
{name = "Matthew Middlehurst", email = "m.b.middlehurst@soton.ac.uk"},
Expand Down Expand Up @@ -34,13 +34,12 @@ classifiers = [
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.8,<3.13"
requires-python = ">=3.9,<3.13"
dependencies = [
"aeon>=0.9.0,<0.10.0",
"tsml>=0.4.0,<0.5.0",
Expand All @@ -55,15 +54,13 @@ all_extras = [
"aeon[all_extras,dl]",
"tsml[all_extras]",
"xgboost",
"torch>=1.13.1",
]
unstable_extras = [
"aeon[unstable_extras]",
"tsml[unstable_extras]",
]
deep_learning = [
"aeon[dl]",
"torch>=1.13.1",
]
dev = [
"pre-commit",
Expand All @@ -79,7 +76,7 @@ binder = [
"jupyterlab",
]
docs = [
"sphinx<8.0.0",
"sphinx<7.4.0",
"sphinx-design",
"sphinx-version-warning",
"sphinx_issues",
Expand Down
2 changes: 1 addition & 1 deletion tsml_eval/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""tsml-eval."""

__version__ = "0.3.0"
__version__ = "0.4.0"