From d0bb074ba26156a55fb2673c38ea48c360d09a22 Mon Sep 17 00:00:00 2001 From: Jeff Dairiki Date: Wed, 4 Sep 2024 16:49:41 -0700 Subject: [PATCH] fixup! flail: attempt testing EOL pythons in workflow --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1e801cf..a8cab77 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,10 +37,10 @@ jobs: - name: Compute tox env name run: | toxenv=$(python -c ' - ver=r"${{ matrix.python }}".replace(".", "") - print(f"py{ver} if ver[0].isdigit() else ver") - ') - echo toxenv is "$toxenv" + ver=r"${{ matrix.python }}".replace(".", "") + print(f"py{ver}" if ver[0].isdigit() else ver) + ') + echo toxenv is "$toxenv"; echo "TOXENV=$toxenv" >> "$GITHUB_ENV" - name: Test with tox