Skip to content

Commit

Permalink
move to str_ instead of bytes_
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Oct 24, 2024
1 parent 3465900 commit a66a179
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/benchmark/numpy_dtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
}),
'np.string': pd.DataFrame({
'np.string': pd.Series([
np.bytes_('string1'),
np.bytes_('string2'),
np.bytes_('string3'),
np.str_('string1'),
np.str_('string2'),
np.str_('string3'),
])
}),
'np.unicode': pd.DataFrame({
Expand Down

0 comments on commit a66a179

Please sign in to comment.