From f148e87ddb18bf1007b630f66cfb719d183f76b8 Mon Sep 17 00:00:00 2001 From: Duncan Blythe Date: Sat, 2 Nov 2024 18:51:28 +0100 Subject: [PATCH] Set new dev version --- .github/workflows/release.yaml | 4 ++++ VERSION | 2 +- superduper/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c769fe762..d5e18efbe 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -113,6 +113,10 @@ jobs: with: repository-url: https://test.pypi.org/legacy/ packages-dir: artifact/ + + - name: Remove unwanted files from dist + run: rm -f plugins/${{ matrix.plugin }}/dist/*.attestation + - uses: pypa/gh-action-pypi-publish@release/v1 with: packages-dir: artifact/ \ No newline at end of file diff --git a/VERSION b/VERSION index 1d0ba9ea1..8ff5d387d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0 +0.5.0.dev diff --git a/superduper/__init__.py b/superduper/__init__.py index a9adcb11f..2792a9031 100644 --- a/superduper/__init__.py +++ b/superduper/__init__.py @@ -9,7 +9,7 @@ logging = logger.Logging -__version__ = '0.4.0' +__version__ = '0.5.0.dev' from .base.decorators import code