From e7504ef73c0769e3cecfe9aa8aecf63ac5a4a1ed Mon Sep 17 00:00:00 2001 From: Thomas Isensee <26852629+thomasisensee@users.noreply.github.com> Date: Tue, 19 May 2026 16:40:52 +0200 Subject: [PATCH] ci: use python shell --- .github/workflows/release-pypi.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release-pypi.yml b/.github/workflows/release-pypi.yml index ab5e07a..904432d 100644 --- a/.github/workflows/release-pypi.yml +++ b/.github/workflows/release-pypi.yml @@ -34,8 +34,8 @@ jobs: - name: Verify release tag matches package version if: ${{ github.event_name == 'push' }} working-directory: ${{ github.workspace }}/python/ndtbl/ + shell: python run: | - python - <<'PY' import os import pathlib import tomllib @@ -52,7 +52,6 @@ jobs: ) print(f"Publishing from {ref}, matching project version {version}.") - PY - name: Install uv uses: astral-sh/setup-uv@v8.1.0