Skip to content

Commit

Permalink
Updating CICD python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
bergsalex committed Jan 15, 2025
1 parent 73c00c0 commit 79c479f
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_check-coverage-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
required: true
python-version:
description: Python version to set up'
default: '3.11'
default: '3.13'
type: string
runner-os:
description: 'Runner OS'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_format-lint-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
python-version:
description: 'Python version to set up'
required: true
default: '3.9'
default: '3.13'
type: string
jobs:
format-lint:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_run-tests-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
python-version:
description: Python version to set up'
required: true
default: '3.9'
default: '3.13'
type: string
runner-os:
description: 'Runner OS'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
format-lint:
uses: ./.github/workflows/_format-lint-action.yml
with:
python-version: '3.9'
python-version: '3.13'
test:
needs: format-lint
uses: ./.github/workflows/_run-tests-action.yml
with:
python-version: '3.9'
python-version: '3.13'
runner-os: 'ubuntu-latest'
upload-coverage: false
required-coverage: ${{ vars.REQUIRED_COVERAGE }}
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.13'

- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
format-lint:
uses: ./.github/workflows/_format-lint-action.yml
with:
python-version: '3.9'
python-version: '3.13'
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.9', '3.10', '3.11']
os: [ubuntu-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
uses: ./.github/workflows/_run-tests-action.yml
with:
runner-os: ${{ matrix.os }}
Expand Down

0 comments on commit 79c479f

Please sign in to comment.