From 4be48c57d3b50d520e4a2f434e2b6b669e08bd75 Mon Sep 17 00:00:00 2001 From: Tristan Carel Date: Fri, 15 Mar 2024 17:30:53 +0100 Subject: [PATCH] CI: fix publish-sdist --- .github/workflows/publish-sdist.yml | 3 +++ astrovascpy/version.py | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-sdist.yml b/.github/workflows/publish-sdist.yml index fbf8192..71f2983 100644 --- a/.github/workflows/publish-sdist.yml +++ b/.github/workflows/publish-sdist.yml @@ -13,6 +13,9 @@ jobs: uses: actions/setup-python@v4 with: python-version: "3.12" + - name: Install test dependencies + run: | + python -m pip install --upgrade pip setuptools - name: Build a source tarball run: | python setup.py sdist diff --git a/astrovascpy/version.py b/astrovascpy/version.py index 7f1a839..8d32e71 100644 --- a/astrovascpy/version.py +++ b/astrovascpy/version.py @@ -11,5 +11,5 @@ limitations under the License. """ -VERSION = "0.1.4" +VERSION = "0.1.5" version = VERSION