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 a1f429e commit c27b3f9Copy full SHA for c27b3f9
.github/workflows/build-ocp.yml
@@ -181,7 +181,8 @@ jobs:
181
cp $CONDA_PREFIX/lib/python$PY_VER/site-packages/vtkmodules/${{ matrix.vtk_libs }} $DEST/lib/
182
cp $CONDA_PREFIX/lib/python$PY_VER/site-packages/vtk.py $DEST
183
184
- if [[ "$RUNNER_OS" == "Linux" && "$PY_VER" != "3.13" ]]; then
+ # vtk.libs only exists in official PyPI VTK wheels, not in custom cadquery_vtk wheels
185
+ if [[ "$RUNNER_OS" == "Linux" && "$PY_VER" != "3.13" && "${{ matrix.os }}" != "ubuntu-22.04-arm" ]]; then
186
cp $CONDA_PREFIX/lib/python$PY_VER/site-packages/vtk.libs/* $DEST/lib/
187
fi
188
0 commit comments