eliegoudout

Results 51 comments of eliegoudout

For future reference in case we revisit, I make things more clear. The proposed version is that : - `__call__` accepts `in.shape = (any_shape, dim_domain)` and returns `out.shape = (n_samples,...

> Other libraries, such as xarray or scipp that deal with arrays including labels or units need to do something about it too. We should check what they do. I...

I also think it would be a great idea to release and push current revision as `v0.9.1`. For example, merging #221 closed 12 issues, but many people still use PyPi's...

I think you should split your PR in two: - One for the SEPARATING_LINE fix - One for your proposed modification. Indeed, merging the fix should not be conditional to...

I can't reproduce the bug. Can you still reproduce it @juggah? Maybe it was fixed, in which case issue should be closed. ```pycon >>> import tabulate >>> tabulate.__version__ '0.9.0' >>>...

Hello @arpitjain099, Sorry for asking you here, but do you have the rights to review / merge PRs? I think this repo is lacking activity recently and I would really...

I think it would be preferable not to confuse `colalign` (column-wise alignment) with with a global setting when only one string is given. Also, colalign can be many more things...

Hello, are you sure you're using latest version of `tabulate`? I tried in python 3.7/10/11, I didn't get the error while importing tabulate: ``` Python 3.10.8 (tags/v3.10.8:aaaf517, Oct 11 2022,...

One possibility is to limit the width of columns with the `maxcolwidths` parameter. It will still show the whole data but using multiple lines: ```pycon >>> table = ['Some text',...

Thanks for your very thorough answer @abravalheri. - Ok regarding `Home-page`. I find that it would be great if it were populated from `project.urls`, but I guess [PEP621](https://peps.python.org/pep-0621/#have-a-separate-url-home-page-field) ruled against...