From 0305add9ce6934369e8aec2c43846342de9bfd20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20M=C3=B6ller?= Date: Wed, 3 Jan 2024 15:19:15 +0100 Subject: [PATCH] ci: use `X_PYTHON_VERSION` for package job This avoids having to update the CI python version in multiple places. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ac860af9..7849b32d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,10 +94,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.10 + - name: Set up Python ${{ env.X_PYTHON_VERSION }} uses: actions/setup-python@v2 with: - python-version: "3.10" + python-version: ${{ env.X_PYTHON_VERSION }} - name: Install dependencies run: | python -m pip install --upgrade pip