From 59db005bb98d40bc697ea6cd44661a443ee98ed8 Mon Sep 17 00:00:00 2001 From: SylvanBrocard Date: Wed, 13 Nov 2024 16:47:33 +0100 Subject: [PATCH] 0.2.3 release --- .github/workflows/publish-to-test-pypi.yml | 2 ++ src/dpu_kmeans/_core.pyi | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index e739062..6a8431a 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -34,6 +34,7 @@ jobs: publish-to-testpypi: name: Publish Python 🐍 distributions 📦 to TestPyPI + needs: build runs-on: ubuntu-22.04 permissions: id-token: write @@ -51,6 +52,7 @@ jobs: publish-to-pypi: name: Publish Python 🐍 distributions 📦 to PyPI + needs: build runs-on: ubuntu-22.04 if: startsWith(github.ref, 'refs/tags') permissions: diff --git a/src/dpu_kmeans/_core.pyi b/src/dpu_kmeans/_core.pyi index 659fead..510a6fa 100644 --- a/src/dpu_kmeans/_core.pyi +++ b/src/dpu_kmeans/_core.pyi @@ -53,4 +53,4 @@ class Container: def pim_cpu_time(self) -> float: ... FEATURE_TYPE: int = 16 -__version__: str = '0.2.2' +__version__: str = '0.2.3'