Skip to content

Commit

Permalink
Move pydensecrf back to main repo
Browse files Browse the repository at this point in the history
  • Loading branch information
C-Achard committed Nov 21, 2023
1 parent 9d896b8 commit 3b1cd8d
Show file tree
Hide file tree
Showing 4 changed files with 7 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 @@ -52,7 +52,7 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install setuptools tox tox-gh-actions
# pip install git+https://github.com/kodalli/pydensecrf.git@master#egg=pydensecrf
# pip install git+https://github.com/lucasb-eyer/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 @@ -16,7 +16,7 @@
Philipp Krähenbühl and Vladlen Koltun
NIPS 2011
Implemented using the pydense library available at https://github.com/kodalli/pydensecrf.
Implemented using the pydense library available at https://github.com/lucasb-eyer/pydensecrf.
"""

from warnings import warn
Expand Down
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ line_length = 79

[project.optional-dependencies]
crf = [
"pydensecrf@git+https://github.com/kodalli/pydensecrf.git#egg=master",
"pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git#egg=master",
]
onnx-cpu = [
"onnx",
Expand Down Expand Up @@ -156,5 +156,7 @@ test = [
"coverage",
"tox",
"twine",
"pydensecrf@git+https://github.com/kodalli/pydensecrf.git#egg=master",
"pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git#egg=master",
"onnx",
"onnxruntime",
]
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/kodalli/pydensecrf.git@master#egg=pydensecrf
git+https://github.com/lucasb-eyer/pydensecrf.git@master#egg=pydensecrf
onnx
onnxruntime
; pyopencl[pocl]
Expand Down

0 comments on commit 3b1cd8d

Please sign in to comment.