From 512c22059e19a75bd68890eb482601e7d6bd462f Mon Sep 17 00:00:00 2001 From: Jason Kai Date: Thu, 5 Oct 2023 16:07:37 -0400 Subject: [PATCH 1/3] Update version format Remove the "v" in the version within pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8f2324ec..8a1cae7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "afidsvalidator" -version = "v1.3.0-pre-2" +version = "1.3.0-pre-2" description = "Anatomical fiducials (AFIDs) validator for user placed markups" authors = ["Jason Kai ", "Tristan Kuehn ", "Olivia Stanley ", "AFIDs contributors"] license = "GPL-3.0" From 88ee1b7348c7ba4881b704a4d6a310801100b783 Mon Sep 17 00:00:00 2001 From: Jason Kai Date: Thu, 5 Oct 2023 16:11:37 -0400 Subject: [PATCH 2/3] add missing token for workflow --- .github/workflows/afids-validator_ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/afids-validator_ci.yml b/.github/workflows/afids-validator_ci.yml index eed9d8f4..26035df2 100644 --- a/.github/workflows/afids-validator_ci.yml +++ b/.github/workflows/afids-validator_ci.yml @@ -19,6 +19,7 @@ jobs: with: python-version: ${{ matrix.python-version }} cache-id: ${{ github.event.pull_request.id }} + token: ${{ secrets.GITHUB_TOKEN }} install-library: true - name: Start PostgreSQL services @@ -61,6 +62,7 @@ jobs: with: python-version: ${{ matrix.python-version }} cache-id: ${{ github.event.pull_request.id }} + token: ${{ secrets.GITHUB_TOKEN }} - name: isort run: poetry run isort afidsvalidator test -c From 9a4a89b2bb041029d36aa060d39e02fd875cfc95 Mon Sep 17 00:00:00 2001 From: Jason Kai Date: Thu, 5 Oct 2023 22:07:02 -0400 Subject: [PATCH 3/3] fix workflow bugs --- .github/workflows/afids-validator_ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/afids-validator_ci.yml b/.github/workflows/afids-validator_ci.yml index 26035df2..b2a114df 100644 --- a/.github/workflows/afids-validator_ci.yml +++ b/.github/workflows/afids-validator_ci.yml @@ -18,8 +18,6 @@ jobs: uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.2.1 with: python-version: ${{ matrix.python-version }} - cache-id: ${{ github.event.pull_request.id }} - token: ${{ secrets.GITHUB_TOKEN }} install-library: true - name: Start PostgreSQL services @@ -61,8 +59,6 @@ jobs: uses: khanlab/actions/.github/actions/action-setup_task-installPyProject@v0.2.1 with: python-version: ${{ matrix.python-version }} - cache-id: ${{ github.event.pull_request.id }} - token: ${{ secrets.GITHUB_TOKEN }} - name: isort run: poetry run isort afidsvalidator test -c