Skip to content

Commit

Permalink
Temp fix for CRF (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Achard authored Jul 28, 2023
1 parent b60b2be commit 022ebad
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install setuptools tox tox-gh-actions
# pip install git+https://github.com/lucasb-eyer/pydensecrf.git@master#egg=pydensecrf
# pip install git+https://github.com/kodalli/pydensecrf.git@master#egg=pydensecrf

# this runs the platform-specific tests declared in tox.ini
- name: Test with tox
Expand Down
2 changes: 1 addition & 1 deletion napari_cellseg3d/code_models/crf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Philipp Krähenbühl and Vladlen Koltun
NIPS 2011
Implemented using the pydense libary available at https://github.com/lucasb-eyer/pydensecrf.
Implemented using the pydense libary available at https://github.com/kodalli/pydensecrf.
"""
from warnings import warn

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ line_length = 79

[project.optional-dependencies]
crf = [
"pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git#egg=master",
"pydensecrf@git+https://github.com/kodalli/pydensecrf.git#egg=master",
]
dev = [
"isort",
Expand All @@ -142,7 +142,7 @@ test = [
"coverage",
"tox",
"twine",
"pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git#egg=master",
"pydensecrf@git+https://github.com/kodalli/pydensecrf.git#egg=master",
]
onnx-cpu = [
"onnx",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ deps =
magicgui
pytest-qt
qtpy
git+https://github.com/lucasb-eyer/pydensecrf.git@master#egg=pydensecrf
git+https://github.com/kodalli/pydensecrf.git@master#egg=pydensecrf
onnx
onnxruntime
; pyopencl[pocl]
Expand Down

0 comments on commit 022ebad

Please sign in to comment.