Skip to content

Commit

Permalink
temporally fixated Python 3.12 in CI to 3.12.3 (#6502)
Browse files Browse the repository at this point in the history
To work around actions/setup-python#886.
  • Loading branch information
firewave authored Jun 10, 2024
1 parent 99674e1 commit 019a240
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Python 3.12
- name: Set up Python 3.12.3
if: matrix.config == 'release'
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.12.3'
check-latest: true

- name: Set up Visual Studio environment
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/asan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
with:
key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }}

- name: Set up Python 3.12
- name: Set up Python 3.12.3
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.12.3'
check-latest: true

- name: Install missing software on ubuntu
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scriptcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12.3']
include:
- python-version: '3.12'
- python-version: '3.12.3'
python-latest: true

fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
with:
key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }}

- name: Set up Python 3.12
- name: Set up Python 3.12.3
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.12.3'
check-latest: true

- name: Install missing software on ubuntu
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubsan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ jobs:
with:
key: ${{ github.workflow }}-${{ github.job }}-${{ matrix.os }}

- name: Set up Python 3.12
- name: Set up Python 3.12.3
uses: actions/setup-python@v5
with:
python-version: '3.12'
python-version: '3.12.3'
check-latest: true

- name: Install missing software on ubuntu
Expand Down

0 comments on commit 019a240

Please sign in to comment.