Skip to content

Commit 45f37bb

Browse files
committed
try uninstalling SimpleCRF before installing through wheel
1 parent 1e99d25 commit 45f37bb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/CI-windows.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ jobs:
2828
run: python setup.py bdist_wheel --py-limited-api=cp36
2929

3030
- name: Install software
31-
run: pip install --find-links=${{github.workspace}}/dist/ SimpleCRF
31+
run: |
32+
pip uninstall SimpleCRF
33+
pip install --find-links=${{github.workspace}}/dist/ SimpleCRF
3234
3335
- name: Test import
3436
run: python -c "import denseCRF, maxflow"

0 commit comments

Comments
 (0)