feat: Add support for Python 3.13

This commit is contained in:
Radim Karniš
2024-10-15 09:42:15 +02:00
parent 62597272c3
commit 6abd05d5c9
3 changed files with 5 additions and 4 deletions

View File

@@ -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
@@ -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: |

View File

@@ -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:

View File

@@ -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"]