Skip to content

Commit bc1841b

Browse files
committed
Fix polars columns= deprecation for schema=
1 parent 2e449cb commit bc1841b

File tree

2 files changed

+78
-34
lines changed

2 files changed

+78
-34
lines changed

talib/_abstract.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ class Function(object):
375375
return __POLARS_SERIES(ret[0])
376376
else:
377377
return __POLARS_DATAFRAME(numpy.column_stack(ret),
378-
columns=self.output_names)
378+
schema=self.output_names)
379379
else:
380380
return ret[0] if len(ret) == 1 else ret
381381

talib/_ta_lib.c

Lines changed: 77 additions & 33 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)