Skip to content

Commit 6abd05d

Browse files
committed
feat: Add support for Python 3.13
1 parent 6259727 commit 6abd05d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/test_esptool.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
11+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
1212

1313
steps:
1414
- name: Checkout ref commit
@@ -52,10 +52,10 @@ jobs:
5252
- name: Checkout
5353
uses: actions/checkout@master
5454

55-
- name: Set up Python 3.12
55+
- name: Set up Python 3.13
5656
uses: actions/setup-python@master
5757
with:
58-
python-version: 3.12
58+
python-version: 3.13
5959

6060
- name: Check if flasher stubs are up-to-date
6161
run: |

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ host_tests_espefuse:
125125

126126
host_tests_latest_python:
127127
<<: *host_tests_template
128-
image: python:3.12-bullseye
128+
image: python:3.13-bullseye
129129
variables:
130130
PYTEST_ADDOPTS: "-sv --junitxml=test/report.xml --color=yes"
131131
script:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
"Programming Language :: Python :: 3.10",
2929
"Programming Language :: Python :: 3.11",
3030
"Programming Language :: Python :: 3.12",
31+
"Programming Language :: Python :: 3.13",
3132
]
3233
requires-python = ">=3.7"
3334
dynamic = ["version", "scripts"]

0 commit comments

Comments
 (0)