Skip to content

Commit

Permalink
release(3.12.2): fixes for largest_k and dust
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Aug 10, 2023
1 parent 1b398ac commit 9943790
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cc3d.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ cimport numpy as cnp
import numpy as np
import time

__VERSION__ = '3.12.1'
__VERSION__ = '3.12.2'

cdef extern from "cc3d.hpp" namespace "cc3d":
cdef size_t estimate_provisional_label_count[T](
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def requirements():

setuptools.setup(
name="connected-components-3d",
version="3.12.1",
version="3.12.2",
setup_requires=['pbr', 'numpy', 'cython'],
install_requires=['numpy'],
python_requires=">=3.7,<4.0",
Expand All @@ -47,7 +47,7 @@ def requirements():
'cc3d',
sources=[ 'cc3d.pyx' ],
language='c++',
include_dirs=[ NumpyImport() ],
include_dirs=[ str(NumpyImport()) ],
extra_compile_args=extra_compile_args,
)
],
Expand Down

0 comments on commit 9943790

Please sign in to comment.