Skip to content

Commit

Permalink
release(1.12.0): adds dijkstra.railroad
Browse files Browse the repository at this point in the history
This is probably only useful for Kimimaro. It lets you
find networks of zero weighted paths faster.
  • Loading branch information
william-silversmith committed Aug 31, 2021
1 parent d3da628 commit 1d6056f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions dijkstra3d.cpp

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dijkstra3d.pyx
Expand Up @@ -35,7 +35,7 @@ from libcpp.vector cimport vector
cimport numpy as cnp
import numpy as np

__VERSION__ = '1.11.0'
__VERSION__ = '1.12.0'

ctypedef fused UINT:
uint8_t
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -20,7 +20,7 @@ def read(fname):

setuptools.setup(
name="dijkstra3d",
version="1.11.0",
version="1.12.0",
python_requires="~=3.6", # >= 3.6 < 4.0
setup_requires=['numpy'],
ext_modules=[
Expand Down

0 comments on commit 1d6056f

Please sign in to comment.