astanin / python-tabulate

Pretty-print tabular data in Python, a library and a command-line utility. Repository migrated from bitbucket.org/astanin/python-tabulate.
https://pypi.org/project/tabulate/
MIT License
2.08k stars 162 forks source link

Fix separating line detection with ndarray values #288

Open alugowski opened 12 months ago

alugowski commented 12 months ago

This code:

import numpy as np
from tabulate import tabulate

data = [[np.ones(1)]]

print(tabulate(data))

Throws a FutureWarning or a ValueError due to the comparison with SEPARATING_LINE.

Fixes https://github.com/astanin/python-tabulate/issues/287

georkap commented 1 month ago

Can this PR be merged to master?