Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: actions/setup-python@v6
with:
# Keep in sync with defaultPythonVersion in testAndPublish.yml.
python-version: '3.13.13'
python-version: '3.13.15'
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fetch-crowdin-translations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v7
with:
python-version: '3.13.13'
python-version: '3.13.15'
architecture: 'x64'

- name: setup uv
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testAndPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ env:
supportedRunners: '["windows-2022", "windows-2025-vs2026"]'
defaultArch: x64
supportedArchitectures: '["x64"]'
defaultPythonVersion: '3.13.13'
supportedPythonVersions: '["3.13.13"]'
defaultPythonVersion: '3.13.15'
supportedPythonVersions: '["3.13.15"]'

jobs:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .python-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cpython-3.13.13-windows-x86_64-none
cpython-3.13.15-windows-x86_64-none
2 changes: 1 addition & 1 deletion projectDocs/dev/createDevEnvironment.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ The following dependencies need to be installed on your system:

#### Python

[Python](https://www.python.org/), version 3.13.13, 64-bit.
[Python](https://www.python.org/), version 3.13.15, 64-bit.
Install the python version listed in [.python-versions](../../.python-versions)

#### uv
Expand Down
2 changes: 1 addition & 1 deletion runtime-builders/synthDriverHost32/.python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
cpython-3.13.13-windows-x86-none
cpython-3.13.15-windows-x86-none
1 change: 1 addition & 0 deletions user_docs/en/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@ The default implementation forwards to `interactWithMathMl`, preserving compatib
Built on top of [Bleak](https://bleak.readthedocs.io/) and the `_asyncioEventLoop` module. (#19838, @bramd)
* Component updates:
* Updated py2exe to 0.14.1.1. (#20260, @LeonarddeR)
* Python to 3.13.15. (#20634, @dpy013)
* Handlers registered on an `extensionPoints` registrar (`Action`, `Filter`, `Decider`, `AccumulatingDecider`, `Chain`) may now register or unregister handlers while being called, without raising `RuntimeError: OrderedDict mutated during iteration`. (#20545, @LeonarddeR)
* `HandlerRegistrar.handlers` now iterates over a snapshot of the registered handlers taken before the first handler is yielded.
* Fixed a handle leak in `hwIo.Bulk.__init__`: if the read pipe opened successfully but the write pipe failed to open, the read handle was never closed, leaving the device open for the remaining lifetime of the process. (#20555, @KihunJang1981)
Expand Down
Loading