From f03eadd0c12341edb4cd53737bd2de71dd3aad8f Mon Sep 17 00:00:00 2001 From: jeroen Date: Fri, 29 May 2026 16:52:18 +0000 Subject: [PATCH 1/3] :pray: trigger release --- .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 59e10fa..ddf17a6 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.4.1" +version = "0.1.5" requires-python = ">=3.8" dependencies = ["numpy"] authors = [{name = "Jeroen Van Der Donckt"}] diff --git a/tsdownsample/__init__.py b/tsdownsample/__init__.py index bfed60a..0725db3 100644 --- a/tsdownsample/__init__.py +++ b/tsdownsample/__init__.py @@ -11,7 +11,7 @@ NaNMinMaxLTTBDownsampler, ) -__version__ = "0.1.4.1" +__version__ = "0.1.5" __author__ = "Jeroen Van Der Donckt" __all__ = [ From ecfe5e56913d01a08ddfcf69e4b7d3e85e65dc8e Mon Sep 17 00:00:00 2001 From: jeroen Date: Fri, 29 May 2026 18:54:16 +0000 Subject: [PATCH 2/3] deps: add generate-import-lib to pyo3 Cargo dep --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index abac645..46acdcc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" [dependencies] downsample_rs = { path = "downsample_rs", features = ["half"]} -pyo3 = { version = "0.26", features = ["extension-module"] } +pyo3 = { version = "0.26", features = ["extension-module", "generate-import-lib"] } numpy = { version = "0.26", features = ["half"] } half = { version = "2.3.1", default-features = false } paste = { version = "1.0.14", default-features = false } From a84c2390fc46414e695430037be8ef78acb1cda2 Mon Sep 17 00:00:00 2001 From: jeroen Date: Fri, 29 May 2026 19:36:32 +0000 Subject: [PATCH 3/3] :see_no_evil: --- .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: