Skip to content

[Tracking] python314 failures #475732

@Sigmanificient

Description

@Sigmanificient

See: https://docs.python.org/3.14/whatsnew/3.14.html#porting-to-python-3-14

Note

When opening a pr, make sure to reference this tracking issue, so it appears below! This will help me to track it in the list

A few hours ago, nixpkgs-failure-notify showed me that a numbered of python 3.14 packages are currently failing

Previous work

The original list contain all packages with their python313Packages counterpart are building:

cat results/4-failures-packed.csv | python -c '
from collections import defaultdict
import sys

collected = defaultdict(set)

for line in sys.stdin:
    pkg, *_ = line.split(",")

    prefix, _, attr = pkg.partition(".")

    if prefix not in {"python313Packages","python314Packages"}:
        continue

    collected[prefix].add(attr)


diff = collected["python314Packages"] - collected["python313Packages"]
print("\n".join(f"- [ ] {line}" for line in diff))
' | sort

Note

A ticked entry mean the pr to fix package was merged into nixpkgs

Caution

Please double check a package without entry before opening a pr!

Metadata

Metadata

Assignees

No one assigned

    Labels

    0.kind: build failureA package fails to build3.skill: sprintableA larger issue which is split into distinct actionable tasks5.scope: trackingLong-lived issue tracking long-term fixes or multiple sub-problems6.topic: pythonPython is a high-level, general-purpose programming language.
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions