From e956306cb8c40ee2dcfb1656abdaf3b6d40d5f06 Mon Sep 17 00:00:00 2001 From: jeroen Date: Mon, 1 Jun 2026 05:13:53 +0000 Subject: [PATCH 1/2] :rocket: release v0.1.5.1 --- .github/workflows/ci-tsdownsample.yml | 4 ++-- pyproject.toml | 2 +- tsdownsample/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-tsdownsample.yml b/.github/workflows/ci-tsdownsample.yml index c56804f..4d741f9 100644 --- a/.github/workflows/ci-tsdownsample.yml +++ b/.github/workflows/ci-tsdownsample.yml @@ -87,7 +87,7 @@ jobs: # Perhaps smth more in line with this https://github.com/messense/crfs-rs/blob/main/.github/workflows/Python.yml name: build on ${{ matrix.os }} (${{ matrix.target }} - ${{ matrix.manylinux || 'auto' }}) # only run on push to main and on release - if: "success() && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build'))" + # if: "success() && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build'))" strategy: fail-fast: false matrix: @@ -166,7 +166,7 @@ jobs: Release: needs: [Lint_and_Check, Test, Build] - if: "success() && startsWith(github.ref, 'refs/tags/')" + # if: "success() && startsWith(github.ref, 'refs/tags/')" runs-on: ubuntu-latest steps: diff --git a/pyproject.toml b/pyproject.toml index ddf17a6..85395e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "maturin" [project] name = "tsdownsample" description = "Time series downsampling in rust" -version = "0.1.5" +version = "0.1.5.1" requires-python = ">=3.8" dependencies = ["numpy"] authors = [{name = "Jeroen Van Der Donckt"}] diff --git a/tsdownsample/__init__.py b/tsdownsample/__init__.py index 0725db3..56e0824 100644 --- a/tsdownsample/__init__.py +++ b/tsdownsample/__init__.py @@ -11,7 +11,7 @@ NaNMinMaxLTTBDownsampler, ) -__version__ = "0.1.5" +__version__ = "0.1.5.1" __author__ = "Jeroen Van Der Donckt" __all__ = [ From 3aef00b9bb34ab53feb7d6e241b93cf2b7465a53 Mon Sep 17 00:00:00 2001 From: jeroen Date: Mon, 1 Jun 2026 05:39:34 +0000 Subject: [PATCH 2/2] :broom: --- .github/workflows/ci-tsdownsample.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-tsdownsample.yml b/.github/workflows/ci-tsdownsample.yml index 4d741f9..c56804f 100644 --- a/.github/workflows/ci-tsdownsample.yml +++ b/.github/workflows/ci-tsdownsample.yml @@ -87,7 +87,7 @@ jobs: # Perhaps smth more in line with this https://github.com/messense/crfs-rs/blob/main/.github/workflows/Python.yml name: build on ${{ matrix.os }} (${{ matrix.target }} - ${{ matrix.manylinux || 'auto' }}) # only run on push to main and on release - # if: "success() && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build'))" + if: "success() && (startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build'))" strategy: fail-fast: false matrix: @@ -166,7 +166,7 @@ jobs: Release: needs: [Lint_and_Check, Test, Build] - # if: "success() && startsWith(github.ref, 'refs/tags/')" + if: "success() && startsWith(github.ref, 'refs/tags/')" runs-on: ubuntu-latest steps: