From eff64ada12b283bc0f9d7926c60d936d890f14c4 Mon Sep 17 00:00:00 2001 From: Vincent Janvid <69356202+Vince-janv@users.noreply.github.com> Date: Mon, 28 Apr 2025 15:17:43 +0200 Subject: [PATCH 1/2] Fix(CI) Update version of bump2version version used --- .github/workflows/merge_master_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/merge_master_ci.yml b/.github/workflows/merge_master_ci.yml index fdff6eae..f0c649d2 100644 --- a/.github/workflows/merge_master_ci.yml +++ b/.github/workflows/merge_master_ci.yml @@ -11,7 +11,7 @@ jobs: name: Bump version and push tags to master steps: - name: Bump version - uses: Clinical-Genomics/bump2version-ci@v3 + uses: Clinical-Genomics/bump2version-ci@2.0.3 env: BUMPVERSION_TOKEN: ${{ secrets.BUMPVERSION_TOKEN }} BUMPVERSION_AUTHOR: ${{ secrets.BUMPVERSION_AUTHOR }} From ca568c8673c48f69079d57483e06af14c0978b1a Mon Sep 17 00:00:00 2001 From: Vincent Janvid Date: Tue, 29 Apr 2025 08:59:27 +0200 Subject: [PATCH 2/2] new black version --- statina/models/query_params.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/statina/models/query_params.py b/statina/models/query_params.py index 7f365d4b..adaebc7f 100644 --- a/statina/models/query_params.py +++ b/statina/models/query_params.py @@ -14,9 +14,9 @@ class ListQuery(BaseModel): class BatchesQuery(ListQuery): - sort_key: Optional[ - Literal["batch_id", "SequencingDate", "Flowcell", "comment"] - ] = "SequencingDate" + sort_key: Optional[Literal["batch_id", "SequencingDate", "Flowcell", "comment"]] = ( + "SequencingDate" + ) class BatchSamplesQuery(ListQuery):