From c0c4025a477f45bf1b5f8f5cf2e357258a0c14b4 Mon Sep 17 00:00:00 2001 From: Keith Decker Date: Tue, 16 Jun 2026 15:30:46 -0600 Subject: [PATCH 1/2] Remove redundant python check --- .github/workflows/ci-tests.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci-tests.yaml b/.github/workflows/ci-tests.yaml index 88986287..f17c04c8 100644 --- a/.github/workflows/ci-tests.yaml +++ b/.github/workflows/ci-tests.yaml @@ -51,7 +51,6 @@ jobs: run: | poetry env remove --all poetry env use python - poetry run python -c "import sys; expected=tuple(map(int, '${{ matrix.python-version }}'.split('.'))); actual=sys.version_info[:2]; print('Poetry Python:', sys.version); raise SystemExit(0 if actual == expected else 'Expected Python %s, got %s' % (expected, actual))" - name: Install invoke run: pipx install invoke From 0a573e4cebec8f7ff959d14d7ec2f34dc025d356 Mon Sep 17 00:00:00 2001 From: Keith Decker Date: Wed, 17 Jun 2026 13:54:14 -0600 Subject: [PATCH 2/2] reapply removal of redundant check after merge --- .github/workflows/ci-tests.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci-tests.yaml b/.github/workflows/ci-tests.yaml index 6eb93703..60274d3f 100644 --- a/.github/workflows/ci-tests.yaml +++ b/.github/workflows/ci-tests.yaml @@ -51,7 +51,6 @@ jobs: - name: Select matrix Python for Poetry run: | poetry env use "${{ steps.setup-python.outputs.python-path }}" - poetry run python -c "import sys; expected=tuple(map(int, '${{ matrix.python-version }}'.split('.'))); actual=sys.version_info[:2]; print('Poetry Python:', sys.version); raise SystemExit(0 if actual == expected else 'Expected Python %s, got %s' % (expected, actual))" - name: Install invoke run: pipx install invoke