File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 3535 - name : Install wheel
3636 run : python -m pip install wheel
3737 - name : Install the package
38- run : python -m pip install -v --no-build-isolation '.[dev]'
38+ run : python -m pip install -ve '.[dev]' --no-build-isolation
3939 - name : Check formatting
4040 run : make pycheckformat
4141 - name : Code linting
@@ -95,10 +95,10 @@ jobs:
9595 run : pip install -r requirements.txt
9696
9797 - name : Install rcs
98- run : pip install -v --no-build-isolation '.[dev]'
98+ run : pip install -ve '.[dev]' --no-build-isolation
9999
100100 - name : Install extension
101- run : pip install -v --no-build-isolation extensions/${{ matrix.extension }}
101+ run : pip install -ve extensions/${{ matrix.extension }} --no-build-isolation
102102
103103 build_cpp_extensions :
104104 needs : [pythonpackage, check-paths]
@@ -138,9 +138,9 @@ jobs:
138138 - name : Install Python dependencies
139139 run : pip install -r requirements.txt
140140 - name : Install RCS
141- run : pip install -v --no-build-isolation '.[dev]'
141+ run : pip install -ve '.[dev]' --no-build-isolation
142142 - name : Install extension
143- run : pip install -v --no-build-isolation extensions/${{ matrix.extension }}
143+ run : pip install -ve extensions/${{ matrix.extension }} --no-build-isolation
144144 - name : Check that stub files are up-to-date
145145 run : make -C extensions/${{ matrix.extension }} stubgen && git diff --exit-code
146146 - name : Check clang format
You can’t perform that action at this time.
0 commit comments