jupyter-xeus / xeus-sql

Jupyter kernel for SQL databases
https://xeus-sql.readthedocs.io/en/latest/
BSD 3-Clause "New" or "Revised" License
158 stars 21 forks source link

Update cpp-tabulate dependency to v1.5 #77

Closed IsabelParedes closed 7 months ago

IsabelParedes commented 7 months ago

Support was added for std::string_view (https://github.com/p-ranav/tabulate/pull/77) which changed the row type.

Previously:

std::vector<variant<std::string, const char*, tabulate::Table>> row;

With v1.5:

std::vector<variant<std::string, const char *, std::string_view, tabulate::Table>>