Skip to content

Commit

Permalink
Renovate shouldn't update the Python minimum version
Browse files Browse the repository at this point in the history
  • Loading branch information
sbrunner committed Dec 2, 2024
1 parent e2e11b7 commit 383e039
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ jobs:
env:
MAIN_BRANCH: master
MAJOR_VERSION: '2.10'
# When we upgrade this we should also upgrade the requirements
# in the documentation: doc/integrator/requirements.rst
# and the first pyupgrade pre-commit hook in .pre-commit-config.yaml
MIN_PYTHON_VERSION: '3.8'

steps:
- run: '! ls BACKPORT_TODO'
Expand Down Expand Up @@ -183,11 +187,7 @@ jobs:
# Use minimal version from the documentation
- uses: actions/setup-python@v5
with:
# When we upgrade this we should also upgrade the requirements
# in the documentation: doc/integrator/requirements.rst
# and the first pyupgrade pre-commit hook in .pre-commit-config.yaml
python-version: '3.8' # Shouldn't be upgraded to latest Python version
- run: python --version|grep ' 3\.8\.'
python-version: '{{ env.MIN_PYTHON_VERSION }}'
- run: pip install --requirement=ci/requirements-project.txt
- run: docker compose version

Expand Down

0 comments on commit 383e039

Please sign in to comment.