| Age | Commit message (Collapse) | Author |
|
https://docs.python.org/3.15/whatsnew/changelog.html#python-3-15-0-alpha-5
|
|
https://docs.python.org/3.15/whatsnew/changelog.html#python-3-15-0-alpha-4
|
|
|
|
https://docs.python.org/3.15/whatsnew/changelog.html#python-3-15-0-alpha-3
|
|
https://docs.python.org/release/3.14.2/whatsnew/changelog.html
|
|
https://docs.python.org/release/3.13.11/whatsnew/changelog.html
|
|
https://docs.python.org/release/3.14.1/whatsnew/changelog.html
|
|
https://docs.python.org/release/3.13.10/whatsnew/changelog.html
|
|
https://docs.python.org/3.15/whatsnew/changelog.html#python-3-15-0-alpha-2
|
|
|
|
|
|
https://docs.python.org/3.15/whatsnew/changelog.html#python-3-15-0-alpha-1
|
|
https://docs.python.org/release/3.13.9/whatsnew/changelog.html
|
|
|
|
|
|
https://docs.python.org/release/3.12.12/whatsnew/changelog.html
|
|
https://docs.python.org/release/3.10.19/whatsnew/changelog.html
|
|
https://docs.python.org/release/3.11.14/whatsnew/changelog.html
|
|
|
|
https://docs.python.org/release/3.13.8/whatsnew/changelog.html#python-3-13-8
|
|
https://docs.python.org/release/3.14.0/whatsnew/changelog.html
|
|
|
|
|
|
https://docs.python.org/3.14/whatsnew/changelog.html#python-3-14-0rc3
|
|
This fixes https://github.com/pypy/pypy/issues/5247 which should fix a
failing test in numpy https://github.com/numpy/numpy/issues/28469
|
|
|
|
|
|
|
|
https://docs.python.org/3.14/whatsnew/changelog.html#python-3-14-0rc2
|
|
https://docs.python.org/release/3.13.7/whatsnew/changelog.html
|
|
simplifies the interface of building cpython minimally
|
|
https://docs.python.org/release/3.13.6/whatsnew/changelog.html
|
|
https://docs.python.org/3.14/whatsnew/changelog.html#python-3-14-0rc1
|
|
|
|
https://docs.python.org/3.14/whatsnew/changelog.html#python-3-14-0-beta-4
|
|
|
|
|
|
https://docs.python.org/3.14/whatsnew/changelog.html#python-3-14-0-beta-3
|
|
|
|
https://docs.python.org/release/3.13.5/whatsnew/changelog.html
|
|
This makes python3Minimal mor minimal
When working on https://github.com/NixOS/nixpkgs/pull/405822 I assumed that libffi was a mandatory dependency of python, but it's not.
|
|
https://docs.python.org/release/3.10.18/whatsnew/changelog.html
Fixes: CVE=2024-12718, CVE-2025-4138, CVE-2025-4330, CVE-2025-4517
|
|
https://docs.python.org/release/3.11.13/whatsnew/changelog.html
Fixes: CVE=2024-12718, CVE-2025-4138, CVE-2025-4330, CVE-2025-4517
|
|
https://docs.python.org/release/3.12.11/whatsnew/changelog.html
Fixes: CVE-2024-12718, CVE-2025-4138, CVE-2025-4330, CVE-2025-4517
|
|
https://docs.python.org/release/3.13.4/whatsnew/changelog.html
Fixes: CVE-2024-12718, CVE-2025-4138, CVE-2025-4330, CVE-2025-4517
|
|
|
|
https://docs.python.org/3.14/whatsnew/changelog.html#python-3-14-0-beta-2
|
|
Updates the default Python version to 3.13 for the NixOS 25.11 release
cycle. We still keep recursing into python312Packages and
python313Packages.
|
|
|
|
Make python3 minimal truly minimal by disabling some more dependencies.
This makes it easy to bootstrap python.
After this, the only remaining runtime deps for python3Minimal are:
- bash (for launching subprocesses with shell=True)
- libc
- libgcc
- libffi
All remaining deps seem to be fundamental and cannot be further reduced, except bash which could potentially be removed and replaced with `$SHELL` at runtime.
Done:
- add some more withXXX switches to the cpython package
- use new switches in python3Minimal to disable some deps
- set some other deps to null in python3Minimal
- Set `allowedReferences` to guarantee that the closure remains minimal in the future.
|