We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cc7906 commit 24da89dCopy full SHA for 24da89d
pyproject.toml
@@ -37,7 +37,7 @@ classifiers = [
37
]
38
39
dependencies = [
40
- "numpy >=1.13.0, <2",
+ "numpy >=1.13.0, <2.1",
41
"cpyparsing >=2.4.7, <=2.5",
42
"platformdirs >=3, <=5",
43
"dataclasses_json >=0.6, <=1.0",
tests/strings_test.py
@@ -100,7 +100,7 @@ def test_str_alloc_sub_realloc(self):
100
101
def test_str_array_type_chceck(self):
102
with pytest.raises(TypeError) as cm:
103
- x.a_str_exp_1d = np.zeros(5, dtype=np.unicode_)
+ x.a_str_exp_1d = np.zeros(5, dtype=np.str_)
104
105
def test_str_func_inout_str(self, capfd):
106
z = np.array(
0 commit comments