From 27f21f0312e88a83912bc525ea4723960a6f9be2 Mon Sep 17 00:00:00 2001 From: mart-r Date: Tue, 12 Aug 2025 10:15:18 +0100 Subject: [PATCH 1/2] Fix another typo in release workflow --- .github/workflows/medcat-v1_production.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/medcat-v1_production.yml b/.github/workflows/medcat-v1_production.yml index badf2429..b693958c 100644 --- a/.github/workflows/medcat-v1_production.yml +++ b/.github/workflows/medcat-v1_production.yml @@ -70,4 +70,4 @@ jobs: with: # TODO CU-869a25n7e Use Trusted Platform Publisher based PyPI release password: ${{ secrets.PYPI_API_TOKEN }} - packages-dir: medcat-v1/dist + packages_dir: medcat-v1/dist From 15ee419061d0e8a27079a9a88efb38514531a4e9 Mon Sep 17 00:00:00 2001 From: mart-r Date: Tue, 12 Aug 2025 10:15:58 +0100 Subject: [PATCH 2/2] Bump v1 release version (in workflow) --- .github/workflows/medcat-v1_production.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/medcat-v1_production.yml b/.github/workflows/medcat-v1_production.yml index b693958c..791a24f3 100644 --- a/.github/workflows/medcat-v1_production.yml +++ b/.github/workflows/medcat-v1_production.yml @@ -37,7 +37,7 @@ jobs: - name: Run UATs run: | python -m pip install --upgrade pip - export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MEDCAT="1.16.4" # NOTE: This is where the project verison is set + export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MEDCAT="1.16.5" # NOTE: This is where the project verison is set pip install -r requirements-dev.txt all_files=$(git ls-files | grep '^tests/.*\.py$' | grep -v '/__init__\.py$' | sed 's/\.py$//' | sed 's/\//./g') num_files=$(echo "$all_files" | wc -l) @@ -56,7 +56,7 @@ jobs: - name: Build a binary wheel and a source tarball run: >- - SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MEDCAT="1.16.4" + SETUPTOOLS_SCM_PRETEND_VERSION_FOR_MEDCAT="1.16.5" python -m build --sdist