From fcc8ba69cf352e080b4bef774007f4777c8cce6e Mon Sep 17 00:00:00 2001 From: teutoburg Date: Sat, 23 Dec 2023 21:39:18 +0100 Subject: [PATCH 1/2] Bumping version from 0.7.1a4 to 0.7.1a5 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index b603503..bbb8b67 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "prepipy" -version = "0.7.1a4" +version = "0.7.1a5" description = "Provides the ability to stretch and combine astronomical images from multiple bands into (RGB) colour images." authors = ["Fabian Haberhauer "] maintainers = ["teutoburg "] From 532001890b48c631b2a23971ae532459feb56f1b Mon Sep 17 00:00:00 2001 From: teutoburg Date: Sat, 23 Dec 2023 21:42:08 +0100 Subject: [PATCH 2/2] Fix silly quotation marks --- .github/workflows/publish_pypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index 4c8a011..513d4b5 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -41,7 +41,7 @@ jobs: name: Publish package to PyPI runs-on: ubuntu-latest needs: build - if: needs.build.result == "success" + if: needs.build.result == 'success' steps: - name: Checkout code uses: actions/checkout@v4 @@ -71,7 +71,7 @@ jobs: name: Bump to dev version runs-on: ubuntu-latest needs: publish - if: needs.publish.result == "success" + if: needs.publish.result == 'success' steps: - name: Checkout code uses: ./.github/workflows/bump.yml