Skip to content

Commit 0315e87

Browse files
committed
Fix pip installs
1 parent 48eaaef commit 0315e87

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/pythonpackage.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
build-and-test:
13-
name: Testing with Python 3.${{ matrix.python_minor }} on Linux
13+
name: Testing on Linux
1414
runs-on: ubuntu-latest
1515

1616
steps:
@@ -24,7 +24,7 @@ jobs:
2424
run: cibuildwheel
2525
env:
2626
CIBW_BUILD: "cp3*-manylinux_x86_64"
27-
CIBW_BEFORE_TEST: pip install -r ".[dev]"
27+
CIBW_BEFORE_TEST: pip install ".[dev]"
2828
CIBW_TEST_COMMAND: "pytest -s {project}"
2929
CIBW_BUILD_VERBOSITY: 1
3030

@@ -43,7 +43,7 @@ jobs:
4343
run: |
4444
pip3 install --user check-manifest twine
4545
python3 -m pip install --upgrade pip setuptools wheel
46-
python3 -m pip install -r ".[dev]"
46+
python3 -m pip install ".[dev]"
4747
4848
- name: Run check-manifest
4949
run: python3 -m check_manifest
@@ -95,7 +95,7 @@ jobs:
9595
CC: /usr/bin/clang
9696
CXX: /usr/bin/clang++
9797
CFLAGS: "-Wno-implicit-function-declaration"
98-
CIBW_BEFORE_TEST: pip install -r ".[dev]"
98+
CIBW_BEFORE_TEST: pip install ".[dev]"
9999
CIBW_TEST_COMMAND: "pytest -s {project}"
100100
CIBW_BUILD_VERBOSITY: 1
101101

@@ -138,7 +138,7 @@ jobs:
138138
env:
139139
CIBW_BUILD: ${{ format('cp3*-{0}*', matrix.cibw_buildlinux) }}
140140
CIBW_ARCHS_LINUX: ${{ matrix.cibw_arch }}
141-
CIBW_BEFORE_TEST: pip install -r ".[dev]"
141+
CIBW_BEFORE_TEST: pip install ".[dev]"
142142
CIBW_TEST_COMMAND: "pytest -s {project}"
143143
CIBW_BUILD_VERBOSITY: 1
144144

@@ -170,7 +170,7 @@ jobs:
170170
env:
171171
CIBW_BUILD: "cp3*"
172172
CIBW_ARCHS_WINDOWS: "AMD64"
173-
CIBW_BEFORE_TEST: pip install -r ".[dev]"
173+
CIBW_BEFORE_TEST: pip install ".[dev]"
174174
CIBW_TEST_COMMAND: "pytest -s {project}"
175175
CIBW_BUILD_VERBOSITY: 1
176176

0 commit comments

Comments
 (0)