Skip to content

Commit fb692c7

Browse files
skip flashinfer-python for py3.9 due to upstream error (#3605)
1 parent 4f47a0b commit fb692c7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build-test-linux-x86_64.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,12 @@ jobs:
146146
echo "flashinfer-python is not supported for python version 3.13 or higher"
147147
else
148148
echo "Installing flashinfer-python"
149-
python -m pip install flashinfer-python --no-deps
149+
# flashinfer-python is broken on python 3.9 at the moment, so we skip it for now
150+
if (major == 3 && minor == 9); then
151+
echo "Skipping flashinfer-python for python 3.9"
152+
else
153+
python -m pip install flashinfer-python --no-deps
154+
fi
150155
fi
151156
cd dynamo
152157
python -m pytest -ra --junitxml=${RUNNER_TEST_RESULTS_DIR}/dynamo_converters_test_results.xml -n 4 conversion/

0 commit comments

Comments
 (0)