Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 1cf7d4d

Browse files
committed
0.1.5 RC 1
1 parent d29c505 commit 1cf7d4d

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

README.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ ArrayMap requires the following:
3636
What is New in ArrayMap
3737
-------------------------
3838

39+
0.1.5
40+
........
41+
42+
Improved handling for Unicode elements that contain non-terminal NULL strings.
43+
44+
3945
0.1.4
4046
........
4147

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import os
55

66

7-
AM_VERSION = "0.1.4"
7+
AM_VERSION = "0.1.5"
88

99

1010
with open("README.rst") as file:

test/test_property.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,10 @@ def strategy(contiguous: bool):
5252
shape=1, unique=True, fill=st.nothing(), dtype=scalar_dtypes()
5353
).map(partial(proc, contiguous=contiguous))
5454

55-
return st.one_of(strategy(contiguous=True), strategy(contiguous=False))
55+
return st.one_of(
56+
strategy(contiguous=True),
57+
strategy(contiguous=False),
58+
)
5659

5760

5861
@given(keys=hypothesis.infer)

test/test_unit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def test_fam_constructor_array_unicode_d2():
164164
a1.flags.writeable = False
165165
fam = FrozenAutoMap(a1)
166166
assert len(fam) == 2
167-
assert list(fam) == ["", "\x000"] # we lost the last null
167+
assert list(fam) == ["", "\x000"] # we lost the last null
168168
assert "" in fam
169169
assert "\x000" in fam
170170

0 commit comments

Comments
 (0)