File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -59,24 +59,27 @@ jobs:
5959 pip install --upgrade pip
6060 pip install build setuptools wheel requests auditwheel delocate delvewheel
6161
62- - name : Manylinux Setup 1
62+ - name : Manylinux Build 1
6363 shell : bash -l {0}
6464 if : ${{ matrix.os == 'ubuntu-18.04' && matrix.python-version != '3.10' }}
6565 run : |
6666 export VTK_MANYLINUX=/tmp/vtk-manylinux
6767 pip install -t $VTK_MANYLINUX --no-deps vtk~=9.1.0
68+ python -m build --no-isolation --wheel
6869
6970 # vtk 9.1 py3.10 manylinux wheel not available on PyPI.
7071 # Use pyvista build: https://gitlab.kitware.com/vtk/vtk/-/issues/18335
71- - name : Manylinux Setup 2
72+ - name : Manylinux Build 2
7273 shell : bash -l {0}
7374 if : ${{ matrix.os == 'ubuntu-18.04' && matrix.python-version == '3.10' }}
7475 run : |
7576 export VTK_MANYLINUX=/tmp/vtk-manylinux
7677 pip install -t $VTK_MANYLINUX --no-deps https://github.com/pyvista/pyvista-wheels/raw/main/vtk-9.1.0.dev0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
78+ python -m build --no-isolation --wheel
7779
78- - name : Build wheel
80+ - name : Conda-only Build
7981 shell : bash -l {0}
82+ if : ${{ matrix.os != 'ubuntu-18.04' }}
8083 run : |
8184 python -m build --no-isolation --wheel
8285
You can’t perform that action at this time.
0 commit comments