Skip to content

Commit a17e21c

Browse files
committed
Update to Python 3.11.
1 parent b647315 commit a17e21c

10 files changed

+17
-17
lines changed

.github/workflows/checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- name: Setup python
2828
uses: actions/setup-python@v4
2929
with:
30-
python-version: 3.8
30+
python-version: 3.11
3131
- name: Install prerequisites
3232
run: python scripts/gha/install_prereqs_desktop.py
3333
- name: log clang format version
@@ -62,7 +62,7 @@ jobs:
6262
- name: Setup python
6363
uses: actions/setup-python@v4
6464
with:
65-
python-version: 3.8
65+
python-version: 3.11
6666
- name: Install prerequisites
6767
run: |
6868
python scripts/gha/install_prereqs_desktop.py

.github/workflows/checks_secure.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
if: steps.check.outputs.has-permission != 1 || github.event.pull_request.head.repo.full_name != github.repository
3434
uses: actions/setup-python@v4
3535
with:
36-
python-version: 3.8
36+
python-version: 3.11
3737
- name: Install prerequisites
3838
if: steps.check.outputs.has-permission != 1 || github.event.pull_request.head.repo.full_name != github.repository
3939
run: pip install -r scripts/gha/python_requirements.txt

.github/workflows/cpp-packaging.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
- name: Setup python
101101
uses: actions/setup-python@v4
102102
with:
103-
python-version: 3.8
103+
python-version: 3.11
104104

105105
- name: Fetch and build binutils
106106
run: |
@@ -213,7 +213,7 @@ jobs:
213213
- name: Setup python
214214
uses: actions/setup-python@v4
215215
with:
216-
python-version: 3.8
216+
python-version: 3.11
217217

218218
- name: install prerequisites
219219
run: sdk-src/build_scripts/ios/install_prereqs.sh
@@ -322,7 +322,7 @@ jobs:
322322
architecture: ["x64", "x86", "arm64"]
323323
msvc_runtime: ["static", "dynamic"]
324324
linux_abi: ["legacy", "c++11"]
325-
python_version: [3.8]
325+
python_version: [3.11]
326326
include:
327327
- os: windows-latest
328328
vcpkg_triplet_suffix: "windows-static"
@@ -535,7 +535,7 @@ jobs:
535535
- name: Setup python
536536
uses: actions/setup-python@v4
537537
with:
538-
python-version: 3.8
538+
python-version: 3.11
539539

540540
- name: Install prerequisites
541541
run: |
@@ -854,7 +854,7 @@ jobs:
854854
- name: Setup python
855855
uses: actions/setup-python@v4
856856
with:
857-
python-version: '3.8'
857+
python-version: '3.11'
858858
- name: Use expanded matrix
859859
if: github.event_name == 'schedule' || github.event.inputs.use_expanded_matrix == '1'
860860
run: |
@@ -923,7 +923,7 @@ jobs:
923923
- name: Setup python
924924
uses: actions/setup-python@v4
925925
with:
926-
python-version: 3.8
926+
python-version: 3.11
927927
- name: Install python deps
928928
run: pip install -r scripts/gha/python_requirements.txt
929929
# The default token can't run workflows, so get an alternate token.

.github/workflows/integration_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ env:
4848
triggerLabelPrefix: "tests-requested: "
4949
triggerLabelFull: "tests-requested: full"
5050
triggerLabelQuick: "tests-requested: quick"
51-
pythonVersion: '3.8'
51+
pythonVersion: '3.11'
5252
xcodeVersion: '16.2'
5353
artifactRetentionDays: 2
5454
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Setup python
6666
uses: actions/setup-python@v4
6767
with:
68-
python-version: 3.8
68+
python-version: 3.11
6969
architecture: "x64"
7070

7171
- name: Install prerequisites

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup python
2626
uses: actions/setup-python@v4
2727
with:
28-
python-version: 3.8
28+
python-version: 3.11
2929
- name: Install prerequisites
3030
run: |
3131
cd firebase

.github/workflows/retry-test-failures.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup python
2323
uses: actions/setup-python@v4
2424
with:
25-
python-version: 3.8
25+
python-version: 3.11
2626

2727
- uses: actions/checkout@v3
2828
with:

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- name: Setup python
4343
uses: actions/setup-python@v4
4444
with:
45-
python-version: 3.8
45+
python-version: 3.11
4646

4747
- name: Check out base branch
4848
uses: actions/checkout@v3

.github/workflows/update-feature-branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
- name: Setup python
7777
uses: actions/setup-python@v4
7878
with:
79-
python-version: 3.8
79+
python-version: 3.11
8080

8181
- uses: actions/checkout@v3
8282
with:

scripts/gha/print_matrix_configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"architecture": ["x64", "x86"],
7979
"msvc_runtime": ["static","dynamic"],
8080
"xcode_version": ["16.2"],
81-
"python_version": ["3.7"],
81+
"python_version": ["3.11"],
8282

8383
EXPANDED_KEY: {
8484
"os": ["ubuntu-22.04", "macos-14", "windows-latest"],
@@ -91,7 +91,7 @@
9191
"matrix": {
9292
"os": ["ubuntu-22.04", "macos-14", "windows-latest"],
9393
"architecture": ["x64"],
94-
"python_version": ["3.7"],
94+
"python_version": ["3.11"],
9595

9696
EXPANDED_KEY: {
9797
"os": ["ubuntu-22.04", "macos-14", "windows-latest"]

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy