Skip to content

Commit

Permalink
Update version of python for max compat tests (#940)
Browse files Browse the repository at this point in the history
Forgot to update the version here after the changes elsehwere.
  • Loading branch information
mhucka authored Feb 4, 2025
1 parent d56b575 commit aaf2c3a
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,12 @@ on:
workflow_dispatch:
inputs:
python_ver:
description: Version of Python to use
description: Normal version of Python to use
type: string

python_compat_ver:
description: Max compat version of Python
type: string
default: "3.10.11"

concurrency:
# Cancel any previously-started but still active runs on the same branch.
Expand All @@ -41,6 +44,9 @@ env:
# Default Python version to use.
python_ver: "3.10.11"

# Oldest Python version to use, for max_compat tests.
python_compat_ver: "3.10"

# Files listing dependencies we install using pip in the various jobs below.
# This is used by setup-python to check whether its cache needs updating.
python_dep_files: >-
Expand Down Expand Up @@ -151,7 +157,7 @@ jobs:
# a different version of Python.
- uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: ${{env.python_compat_ver}}

- name: Install requirements
run: |
Expand Down

0 comments on commit aaf2c3a

Please sign in to comment.