Skip to content

Commit f3f5b8b

Browse files
committed
string_ is deprecated in numpy 2.0
1 parent 57a071b commit f3f5b8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sqlutilpy/sqlutil.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -527,7 +527,7 @@ def __create_schema(tableName, arrays, names, temp=False):
527527
(np.uint64, 'bigint'), (np.int16, 'smallint'),
528528
(np.uint8, 'smallint'), (np.int8, 'smallint'),
529529
(np.float32, 'real'), (np.float64, 'double precision'),
530-
(np.string_, 'varchar'), (np.str_, 'varchar'),
530+
(np.bytes_, 'varchar'), (np.str_, 'varchar'),
531531
(np.bool_, 'boolean'), (np.datetime64, 'timestamp')])
532532
if temp:
533533
temp = 'temporary'
@@ -553,7 +553,7 @@ def __print_arrays(arrays, f, delimiter=' '):
553553
format_dict = dict([(np.int32, '%d'), (np.int64, '%d'), (np.int16, '%d'),
554554
(np.int8, '%d'), (np.uint8, '%d'),
555555
(np.float32, '%.18e'), (np.float64, '%.18e'),
556-
(np.string_, '%s'), (np.str_, '%s'),
556+
(np.bytes_, '%s'), (np.str_, '%s'),
557557
(np.datetime64, '%s'), (np.bool_, '%d')])
558558
fmts = []
559559
array_mode = False

0 commit comments

Comments
 (0)