Skip to content

Commit 8f975c6

Browse files
committed
fix(e2e): update flit_core to 3.10.1 for Python 3.14 compatibility
flit_core 3.9.0 uses ast.Str which was removed in Python 3.14, causing test_override.sh to fail. Update to 3.10.1 which supports all Python versions 3.11-3.14. Co-Authored-By: Claude <claude@anthropic.com> Signed-off-by: Ioannis Angelakopoulos <iangelak@redhat.com>
1 parent e3935cf commit 8f975c6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

e2e/test_override.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fromager \
2323
--wheels-repo="$OUTDIR/wheels-repo" \
2424
--work-dir="$OUTDIR/work-dir" \
2525
--patches-dir "$SCRIPTDIR/flit_core_patches" \
26-
bootstrap 'flit_core==3.9.0'
26+
bootstrap 'flit_core==3.10.1'
2727

2828
find "$OUTDIR/wheels-repo/simple/" -name '*.whl'
2929

@@ -50,9 +50,9 @@ fi
5050

5151
# Check for output files
5252
EXPECTED_FILES="
53-
wheels-repo/downloads/flit_core-3.9.0-0-py3-none-any.whl
53+
wheels-repo/downloads/flit_core-3.10.1-0-py3-none-any.whl
5454
55-
sdists-repo/downloads/flit_core-3.9.0.tar.gz
55+
sdists-repo/downloads/flit_core-3.10.1.tar.gz
5656
"
5757

5858
for f in $EXPECTED_FILES; do

0 commit comments

Comments
 (0)