From 1648aec5edff6c4ea836eaf4609687600269173b Mon Sep 17 00:00:00 2001 From: Jojain <50221409+Jojain@users.noreply.github.com> Date: Fri, 21 Apr 2023 00:18:07 +0200 Subject: [PATCH] Update __init__.py `error_bad_lines` as been deprecated in pandas 2.0 and since there is no upper version limit it result in a broken install. This should fix the issue --- bindgen/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindgen/__init__.py b/bindgen/__init__.py index e08bed9..dc7d67d 100644 --- a/bindgen/__init__.py +++ b/bindgen/__init__.py @@ -46,7 +46,7 @@ def read_symbols(p): ''' sym = pd.read_csv(p,header=None,names=['name'],delim_whitespace=True, - error_bad_lines=False).dropna() + on_bad_lines=False).dropna() return sym def remove_undefined_mangled(m,sym):