We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f47a0b commit fb692c7Copy full SHA for fb692c7
.github/workflows/build-test-linux-x86_64.yml
@@ -146,7 +146,12 @@ jobs:
146
echo "flashinfer-python is not supported for python version 3.13 or higher"
147
else
148
echo "Installing flashinfer-python"
149
- python -m pip install flashinfer-python --no-deps
+ # 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
155
fi
156
cd dynamo
157
python -m pytest -ra --junitxml=${RUNNER_TEST_RESULTS_DIR}/dynamo_converters_test_results.xml -n 4 conversion/
0 commit comments