Skip to content

Commit

Permalink
ci(actions): Update to Py3.13 on ubuntu
Browse files Browse the repository at this point in the history
Closes #1047
  • Loading branch information
radimkarnis committed Jan 7, 2025
1 parent d37c38a commit 701b956
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dev_release_esptool_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:

steps:
- uses: actions/checkout@master
- name: Set up Python 3.8
- name: Set up Python 3.13
uses: actions/setup-python@master
with:
python-version: '3.8'
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_esptool_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
- name: Set up Python 3.13
uses: actions/setup-python@master
with:
python-version: '3.7'
python-version: '3.13'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_esptool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [push, pull_request]

jobs:
test_esptool:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # 22.04 is the last version with Python 3.7

strategy:
matrix:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
git diff --exit-code
lint_esptool:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04 # 22.04 is the last version with Python 3.7
steps:
- name: Checkout
uses: actions/checkout@master
Expand Down

0 comments on commit 701b956

Please sign in to comment.