File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 - name : Check out code
2424 uses : actions/checkout@v2
2525
26+ - name : Build web for Linux
27+ if : ${{ matrix.os == 'ubuntu-latest' }}
28+ run : |
29+ git reset --hard
30+ pip install -r ci/requirements-wheel.txt
31+ python setup.py build_web
32+
2633 - name : Build wheels
2734 uses : pypa/cibuildwheel@v2.3.1
2835 env :
3239 CIBW_MANYLINUX_X86_64_IMAGE : manylinux1
3340
3441 - name : Build source
35- if : ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'auto'}}
42+ if : ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'auto' }}
3643 run : |
3744 git reset --hard
3845 pip install -r ci/requirements-wheel.txt
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ install_requires =
4848
4949[options.packages.find]
5050exclude =
51+ benchmarks*
5152 *.tests.*
5253 *.tests
5354
You can’t perform that action at this time.
0 commit comments