Skip to content

Commit

Permalink
Add support for Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Sep 23, 2024
1 parent 023b58e commit 2d4a872
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-20.04, windows-latest, macos-latest]
python-version: ["3.6", "3.7", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.6", "3.7", "3.11", "3.12", "3.13.0-rc.2"]
exclude:
- os: macos-latest
python-version: "3.6"
Expand All @@ -23,7 +23,7 @@ jobs:
submodules: "recursive"

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -37,7 +37,7 @@ jobs:
tox -e py
- name: Python Lint
if: ${{ matrix.python-version != '3.6' }}
if: ${{ matrix.python-version != '3.6' && matrix.python-version != '3.7' }}
run: |
tox -e lint
Expand Down
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ test-driven methodologies, and modern toolchains for unrivaled success.
6.1.16 (2024-??-??)
~~~~~~~~~~~~~~~~~~~

* Added support for Python 3.13
* 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
* 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>`_)
* 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>`__)
Expand Down
2 changes: 1 addition & 1 deletion tests/commands/pkg/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def test_custom_project_libraries(
)
assert pkgs_to_specs(lm.get_installed()) == [
PackageSpec("[email protected]"),
PackageSpec("[email protected].8"),
PackageSpec("[email protected].9"),
]
assert config.get("env:devkit", "lib_deps") == [
"bblanchon/ArduinoJson@^5",
Expand Down

0 comments on commit 2d4a872

Please sign in to comment.