We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6db9634 commit c965987Copy full SHA for c965987
simbench/converter/csv_pp_converter.py
@@ -1206,7 +1206,6 @@ def _copy_data(input_data, output_data):
1206
output_names = _csv_table_pp_dataframe_correspondings(list, out_is_pp)[
1207
int(out_is_pp)
1208
]
1209
-
1210
for corr_str, output_name in zip(corr_strings, output_names):
1211
if corr_str in input_data.keys() and input_data[corr_str].shape[0]:
1212
cols_to_copy = list(
@@ -1217,7 +1216,7 @@ def _copy_data(input_data, output_data):
1217
1216
1218
)
1219
1220
- if pd.__version__.startswith("2.2."):
+ if version.parse(pd.__version__) >= version.parse("2.2.0"):
1221
with warnings.catch_warnings():
1222
warnings.simplefilter(
1223
action="ignore", category=FutureWarning
0 commit comments