Skip to content

Commit c9d87de

Browse files
Fix dependencies installation when building wheels (#1100)
1 parent 6cdb132 commit c9d87de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ jobs:
3939

4040
steps:
4141
- uses: actions/checkout@v4
42-
42+
4343
- name: Build wheels
4444
uses: pypa/cibuildwheel@v2.21.1
4545
env:
4646
CIBW_ARCHS: ${{ matrix.arch }}
47-
CIBW_TEST_GROUPS: test
47+
CIBW_BEFORE_TEST: "pip install -r {project}/requirements/test.txt"
4848
CIBW_TEST_COMMAND: "pytest {project}/tests"
4949
CIBW_MANYLINUX_*_IMAGE: manylinux_2_28
50-
50+
5151
- uses: actions/upload-artifact@v4
5252
with:
5353
name: wheels-${{ matrix.os}}-${{ matrix.arch }}

0 commit comments

Comments
 (0)