File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -60,6 +60,11 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
60
60
- The NewParallel scheduler is now the default, the `tm_v2` flag is removed,
61
61
and the old scheduler is opt-in under `--experimental=legacy_sched`. Additionally,
62
62
the new scheduler is now used for -j1 builds as well.
63
+ - A python interpreter with support for the `threading` package is now required,
64
+ and this is enforced on startup. SCons currently sets its minimum supported
65
+ Python to 3.6, and it was not until Python 3.7 where `threading` became
66
+ default supported. In practice, we expect most real world Python 3.6 deployments
67
+ will have `threading` support enabled, so this will not be an issue.
63
68
64
69
From Mats Wichmann:
65
70
- Add support for Python 3.13 (as of alpha 2). So far only affects
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
33
33
that the generated function argument list matches the function's
34
34
prototype when including a header file. Fixes GH Issue #4320
35
35
- Now supports pre-release Python 3.13
36
+ - Support for Python versions without support for the `threading` package has been removed
36
37
37
38
FIXES
38
39
-----
You can’t perform that action at this time.
0 commit comments