Skip to content

Commit

Permalink
feat: Add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
radimkarnis committed Oct 15, 2024
1 parent 6259727 commit 6abd05d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_esptool.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- name: Checkout ref commit
Expand Down Expand Up @@ -52,10 +52,10 @@ jobs:
- name: Checkout
uses: actions/checkout@master

- name: Set up Python 3.12
- name: Set up Python 3.13
uses: actions/setup-python@master
with:
python-version: 3.12
python-version: 3.13

- name: Check if flasher stubs are up-to-date
run: |
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ host_tests_espefuse:

host_tests_latest_python:
<<: *host_tests_template
image: python:3.12-bullseye
image: python:3.13-bullseye
variables:
PYTEST_ADDOPTS: "-sv --junitxml=test/report.xml --color=yes"
script:
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.7"
dynamic = ["version", "scripts"]
Expand Down

0 comments on commit 6abd05d

Please sign in to comment.