From 5b5e3e538c530cbaf9ddce9f3941dbc5bfb4aa82 Mon Sep 17 00:00:00 2001 From: Paul Natsuo Kishimoto Date: Mon, 23 Dec 2024 17:06:19 -0500 Subject: [PATCH] Ensure Python 3.13 in "sources" CI workflow --- .github/workflows/sources.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sources.yaml b/.github/workflows/sources.yaml index 949949997..befdaecbd 100644 --- a/.github/workflows/sources.yaml +++ b/.github/workflows/sources.yaml @@ -14,6 +14,9 @@ concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} cancel-in-progress: true +env: + python-version: 3.13 + jobs: source: runs-on: ubuntu-latest @@ -70,7 +73,7 @@ jobs: - name: Install Python, the package, and dependencies run: | - uv venv --python=${{ matrix.python-version }} + uv venv --python=${{ env.python-version }} uv pip install .[tests] pytest-regex - name: Tests of ${{ matrix.source }} data source @@ -110,7 +113,7 @@ jobs: - name: Install Python, the package, and dependencies run: | - uv venv --python=${{ matrix.python-version }} + uv venv --python=${{ env.python-version }} uv pip install .[tests] pytest-regex - name: Download artifacts