======================================================================
ERROR [0.313s]: test_agg_with_options (test_table.TableTestCase)
----------------------------------------------------------------------
Traceback (most recent call last):
File "/project/tests/test_table.py", line 335, in test_agg_with_options
aggs = [unique(cols=["ua = a", "ub = b"], include_nulls=True, non_unique_sentinel=np.uint32(-1))]
OverflowError: Python integer -1 out of bounds for uint32
>>> np.uint32(-1)
<stdin>:1: DeprecationWarning: NumPy will stop allowing conversion of out-of-bound Python integers to integer arrays. The conversion of -1 to uint32 will fail in the future.
For the old behavior, usually:
np.array(value).astype(dtype)`
will give the desired result (the cast overflows).
OverflowError: Python integer -1 out of bounds for uint32
In Nightly CI
In numpy 1.2x
in numpy 2.0 (Py 3.9 +)