We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e22724a commit 48aee29Copy full SHA for 48aee29
2 files changed
.github/workflows/test_lint.yml
@@ -43,6 +43,12 @@ jobs:
43
- name: Type check with mypy
44
run: |
45
mypy src/allencell_ml_segmenter
46
+ # This step ensures that opencv does not install libraries
47
+ # that may conflict with what is needed to run pyqt unit tests
48
+ - name: Force opencv-python-headless
49
+ run: |
50
+ pip uninstall -y opencv-python
51
+ pip install "numpy<2.0" opencv-python-headless
52
- name: Test with pytest
53
54
pytest -v --color=yes --cov=allencell_ml_segmenter --cov-report=xml
pyproject.toml
@@ -31,7 +31,6 @@ classifiers = [
31
dependencies = [
32
"npe2>=0.6.2",
33
"numpy<2.0",
34
- "opencv-python-headless",
35
"hydra-core==1.3.2",
36
"bioio==1.1.0",
37
"bioio-base==1.0.4",
0 commit comments