Skip to content

Commit 2d4a872

Browse files
committed
Add support for Python 3.13
1 parent 023b58e commit 2d4a872

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/core.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
os: [ubuntu-20.04, windows-latest, macos-latest]
11-
python-version: ["3.6", "3.7", "3.11", "3.12"]
10+
os: [ubuntu-latest, windows-latest, macos-latest]
11+
python-version: ["3.6", "3.7", "3.11", "3.12", "3.13.0-rc.2"]
1212
exclude:
1313
- os: macos-latest
1414
python-version: "3.6"
@@ -23,7 +23,7 @@ jobs:
2323
submodules: "recursive"
2424

2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v4
26+
uses: actions/setup-python@v5
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

@@ -37,7 +37,7 @@ jobs:
3737
tox -e py
3838
3939
- name: Python Lint
40-
if: ${{ matrix.python-version != '3.6' }}
40+
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' }}
4141
run: |
4242
tox -e lint
4343

HISTORY.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ test-driven methodologies, and modern toolchains for unrivaled success.
2121
6.1.16 (2024-??-??)
2222
~~~~~~~~~~~~~~~~~~~
2323

24+
* Added support for Python 3.13
2425
* Introduced the `PLATFORMIO_SYSTEM_TYPE <https://docs.platformio.org/en/latest/envvars.html#envvar-PLATFORMIO_SYSTEM_TYPE>`__ environment variable, enabling manual override of the detected system type for greater flexibility and control in custom build environments
2526
* Enhanced internet connection checks by falling back to HTTPS protocol when HTTP (port 80) fails (`issue #4980 <https://github.com/platformio/platformio-core/issues/4980>`_)
2627
* Upgraded the build engine to the latest version of SCons (4.8.1) to improve build performance, reliability, and compatibility with other tools and systems (`release notes <https://github.com/SCons/scons/releases/tag/4.8.1>`__)

tests/commands/pkg/test_install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@ def test_custom_project_libraries(
446446
)
447447
assert pkgs_to_specs(lm.get_installed()) == [
448448
PackageSpec("[email protected]"),
449-
PackageSpec("[email protected].8"),
449+
PackageSpec("[email protected].9"),
450450
]
451451
assert config.get("env:devkit", "lib_deps") == [
452452
"bblanchon/ArduinoJson@^5",

0 commit comments

Comments
 (0)