Skip to content

Commit 34545d3

Browse files
committed
Switch to Python 3.11 for CI tasks
1 parent 127b422 commit 34545d3

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/core.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
fail-fast: false
99
matrix:
1010
os: [ubuntu-20.04, windows-latest, macos-latest]
11-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
11+
python-version: ["3.6", "3.7", "3.11", "3.12"]
1212

1313
runs-on: ${{ matrix.os }}
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
with:
1818
submodules: "recursive"
1919

@@ -37,7 +37,7 @@ jobs:
3737
tox -e lint
3838
3939
- name: Integration Tests
40-
if: ${{ matrix.python-version == '3.9' }}
40+
if: ${{ matrix.python-version == '3.11' }}
4141
run: |
4242
tox -e testcore
4343

.github/workflows/deployment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ jobs:
1212
environment: production
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
with:
1717
submodules: "recursive"
1818

1919
- name: Set up Python
2020
uses: actions/setup-python@v4
2121
with:
22-
python-version: "3.9"
22+
python-version: "3.11"
2323

2424
- name: Install dependencies
2525
run: |

.github/workflows/docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ jobs:
77
name: Build Docs
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
with:
1212
submodules: "recursive"
1313
- name: Set up Python
1414
uses: actions/setup-python@v4
1515
with:
16-
python-version: 3.9
16+
python-version: "3.11"
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip
@@ -78,7 +78,7 @@ jobs:
7878
fi
7979
- name: Checkout latest Docs
8080
continue-on-error: true
81-
uses: actions/checkout@v3
81+
uses: actions/checkout@v4
8282
with:
8383
repository: ${{ env.DOCS_REPO }}
8484
path: ${{ env.DOCS_DIR }}

.github/workflows/examples.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ jobs:
1515
PIO_INSTALL_DEVPLATFORM_NAMES: "aceinna_imu,atmelavr,atmelmegaavr,atmelsam,espressif32,espressif8266,nordicnrf52,raspberrypi,ststm32,teensy"
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
with:
2020
submodules: "recursive"
2121

2222
- name: Set up Python
2323
uses: actions/setup-python@v4
2424
with:
25-
python-version: "3.9"
25+
python-version: "3.11"
2626

2727
- name: Install dependencies
2828
run: |

.github/workflows/projects.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,20 @@ jobs:
4040

4141
runs-on: ${{ matrix.os }}
4242
steps:
43-
- uses: actions/checkout@v3
43+
- uses: actions/checkout@v4
4444
with:
4545
submodules: "recursive"
4646

4747
- name: Set up Python ${{ matrix.python-version }}
4848
uses: actions/setup-python@v4
4949
with:
50-
python-version: 3.9
50+
python-version: 3.11
5151

5252
- name: Install PlatformIO
5353
run: pip install -U .
5454

5555
- name: Check out ${{ matrix.project.repository }}
56-
uses: actions/checkout@v3
56+
uses: actions/checkout@v4
5757
with:
5858
submodules: "recursive"
5959
repository: ${{ matrix.project.repository }}

0 commit comments

Comments
 (0)