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 2b547e6 commit ad3db18Copy full SHA for ad3db18
.github/workflows/test.yml
@@ -175,6 +175,12 @@ jobs:
175
176
pip install -q jupyter
177
178
+ SCRIPT_ADDRESS="https://raw.githubusercontent.com/makslevental/mlir-python-extras/refs/heads/${BRANCH}/scripts/get_latest_bindings.py"
179
+ curl $SCRIPT_ADDRESS -o get_latest_bindings.py
180
+ LATEST_VERSION=$(python get_latest_bindings.py "none")
181
+ pip install mlir_python_bindings==$LATEST_VERSION -f https://makslevental.github.io/wheels
182
+ pip install "git+https://github.com/makslevental/mlir-python-extras@$BRANCH"
183
+
184
sed -i.bak 's/OUTPUT_TIMEOUT = 10/OUTPUT_TIMEOUT = 1000/g' \
185
$(python -c 'import site; print(site.getsitepackages()[0])')/jupyter_client/runapp.py
186
0 commit comments