Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit aa3ed2f

Browse files
committed
for testing purposes
1 parent 42d5bf1 commit aa3ed2f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,14 @@ jobs:
231231
variant: ['', _alternative_templates]
232232
steps:
233233
- uses: actions/checkout@v4
234+
- name: Set env
235+
run: |
236+
export PYTHON_NEWEST_VERSION=$(echo '${{ matrix.python-version }}' | | jq -Rc 'split(",")'[-1])
237+
echo "PYTHON_NEWEST_VERSION=${PYTHON_NEWEST_VERSION}" >> $GITHUB_ENV
234238
- name: Set up Newest Stable Python
235239
uses: actions/setup-python@v5
236240
with:
237-
python-version: ${{ needs.all_python_setup.outputs.all_python && fromJSON(needs.all_python_setup.outputs.all_python) }}[-1]
241+
python-version: ${{ env.PYTHON_NEWEST_VERSION }}
238242
cache: 'pip'
239243
- name: Install system dependencies.
240244
run: |

0 commit comments

Comments
 (0)