Skip to content

Commit 022ebad

Browse files
authored
Temp fix for CRF (#46)
1 parent b60b2be commit 022ebad

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: |
5252
python -m pip install --upgrade pip
5353
python -m pip install setuptools tox tox-gh-actions
54-
# pip install git+https://github.com/lucasb-eyer/pydensecrf.git@master#egg=pydensecrf
54+
# pip install git+https://github.com/kodalli/pydensecrf.git@master#egg=pydensecrf
5555

5656
# this runs the platform-specific tests declared in tox.ini
5757
- name: Test with tox

napari_cellseg3d/code_models/crf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Philipp Krähenbühl and Vladlen Koltun
88
NIPS 2011
99
10-
Implemented using the pydense libary available at https://github.com/lucasb-eyer/pydensecrf.
10+
Implemented using the pydense libary available at https://github.com/kodalli/pydensecrf.
1111
"""
1212
from warnings import warn
1313

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ line_length = 79
120120

121121
[project.optional-dependencies]
122122
crf = [
123-
"pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git#egg=master",
123+
"pydensecrf@git+https://github.com/kodalli/pydensecrf.git#egg=master",
124124
]
125125
dev = [
126126
"isort",
@@ -142,7 +142,7 @@ test = [
142142
"coverage",
143143
"tox",
144144
"twine",
145-
"pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git#egg=master",
145+
"pydensecrf@git+https://github.com/kodalli/pydensecrf.git#egg=master",
146146
]
147147
onnx-cpu = [
148148
"onnx",

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ deps =
3434
magicgui
3535
pytest-qt
3636
qtpy
37-
git+https://github.com/lucasb-eyer/pydensecrf.git@master#egg=pydensecrf
37+
git+https://github.com/kodalli/pydensecrf.git@master#egg=pydensecrf
3838
onnx
3939
onnxruntime
4040
; pyopencl[pocl]

0 commit comments

Comments
 (0)