We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e550ae4 commit e9b8e79Copy full SHA for e9b8e79
.github/workflows/pypi-cd.yml
@@ -23,6 +23,13 @@ jobs:
23
- name: Check out code
24
uses: actions/checkout@v2
25
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
+
33
- name: Build wheels
34
uses: pypa/[email protected]
35
env:
@@ -32,7 +39,7 @@ jobs:
39
CIBW_MANYLINUX_X86_64_IMAGE: manylinux1
40
41
- name: Build source
- if: ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'auto'}}
42
+ if: ${{ matrix.os == 'ubuntu-latest' && matrix.arch == 'auto' }}
36
43
run: |
37
44
git reset --hard
38
45
pip install -r ci/requirements-wheel.txt
setup.cfg
@@ -48,6 +48,7 @@ install_requires =
48
49
[options.packages.find]
50
exclude =
51
+ benchmarks*
52
*.tests.*
53
*.tests
54
0 commit comments