Skip to content

Commit

Permalink
release(1.13.2): (inverse_)component_map accepts non-aligned inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
william-silversmith committed Jun 24, 2022
1 parent 96c3d6c commit 77b3633
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,8 @@ jobs:
# to supply options, put them in 'env', like:
env:
CIBW_ARCHS_LINUX: ${{matrix.arch}}
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy
CIBW_BEFORE_BUILD: pip install oldest-supported-numpy

- uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
12 changes: 6 additions & 6 deletions fastremap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2989,7 +2989,7 @@ static const char __pyx_k_uint8[] = "uint8";
static const char __pyx_k_uintp[] = "uintp";
static const char __pyx_k_value[] = "value";
static const char __pyx_k_zeros[] = "zeros";
static const char __pyx_k_1_13_1[] = "1.13.1";
static const char __pyx_k_1_13_2[] = "1.13.2";
static const char __pyx_k_astype[] = "astype";
static const char __pyx_k_before[] = "before";
static const char __pyx_k_counts[] = "counts";
Expand Down Expand Up @@ -3259,7 +3259,7 @@ static const char __pyx_k_no_default___reduce___due_to_non[] = "no default __red
static const char __pyx_k_numpy_core_umath_failed_to_impor[] = "numpy.core.umath failed to import";
static const char __pyx_k_unable_to_allocate_shape_and_str[] = "unable to allocate shape and strides.";
static PyObject *__pyx_kp_s_;
static PyObject *__pyx_kp_u_1_13_1;
static PyObject *__pyx_kp_u_1_13_2;
static PyObject *__pyx_n_s_ASCII;
static PyObject *__pyx_kp_s_Buffer_view_does_not_expose_stri;
static PyObject *__pyx_n_u_C;
Expand Down Expand Up @@ -161678,7 +161678,7 @@ static struct PyModuleDef __pyx_moduledef = {

static __Pyx_StringTabEntry __pyx_string_tab[] = {
{&__pyx_kp_s_, __pyx_k_, sizeof(__pyx_k_), 0, 0, 1, 0},
{&__pyx_kp_u_1_13_1, __pyx_k_1_13_1, sizeof(__pyx_k_1_13_1), 0, 1, 0, 0},
{&__pyx_kp_u_1_13_2, __pyx_k_1_13_2, sizeof(__pyx_k_1_13_2), 0, 1, 0, 0},
{&__pyx_n_s_ASCII, __pyx_k_ASCII, sizeof(__pyx_k_ASCII), 0, 0, 1, 1},
{&__pyx_kp_s_Buffer_view_does_not_expose_stri, __pyx_k_Buffer_view_does_not_expose_stri, sizeof(__pyx_k_Buffer_view_does_not_expose_stri), 0, 0, 1, 0},
{&__pyx_n_u_C, __pyx_k_C, sizeof(__pyx_k_C), 0, 1, 0, 1},
Expand Down Expand Up @@ -163360,15 +163360,15 @@ if (!__Pyx_RefNanny) {
/* "fastremap.pyx":32
* cimport numpy as cnp
*
* __version__ = '1.13.1' # <<<<<<<<<<<<<<
* __version__ = '1.13.2' # <<<<<<<<<<<<<<
* __VERSION__ = __version__
*
*/
if (PyDict_SetItem(__pyx_d, __pyx_n_s_version, __pyx_kp_u_1_13_1) < 0) __PYX_ERR(0, 32, __pyx_L1_error)
if (PyDict_SetItem(__pyx_d, __pyx_n_s_version, __pyx_kp_u_1_13_2) < 0) __PYX_ERR(0, 32, __pyx_L1_error)

/* "fastremap.pyx":33
*
* __version__ = '1.13.1'
* __version__ = '1.13.2'
* __VERSION__ = __version__ # <<<<<<<<<<<<<<
*
* ctypedef fused UINT:
Expand Down
2 changes: 1 addition & 1 deletion fastremap.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import operator
import numpy as np
cimport numpy as cnp

__version__ = '1.13.1'
__version__ = '1.13.2'
__VERSION__ = __version__

ctypedef fused UINT:
Expand Down

0 comments on commit 77b3633

Please sign in to comment.