build(deps): bump urllib3 from 1.26.16 to 1.26.17
Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.16 to 1.26.17. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](urllib3/urllib3@1.26.16...1.26.17) --- updated-dependencies: - dependency-name: urllib3 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
chore(deps): pre-commit.ci autoupdate
updates: - [github.com/codespell-project/codespell: v2.2.5 → v2.2.6](codespell-project/codespell@v2.2.5...v2.2.6)
build(deps-dev): bump pillow from 10.0.0 to 10.0.1
Bumps [pillow](https://github.com/python-pillow/Pillow) from 10.0.0 to 10.0.1. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](python-pillow/Pillow@10.0.0...10.0.1) --- updated-dependencies: - dependency-name: pillow dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
docs: add more examples to Table.select()
This is to make these other APIs more discoverable.
docs: add "similar to pandas ..." to docstrings
make these more easily findable/understandable by pandas users
docs: improve Table.columns docstring
Before it could be interpreted that this returned Column objects. But it just returns string names of the columns. Per review comment, I'm not putting in the full `list[str]` type annotation because it should get rendered in quartodoc, it just isn't.
docs: add basic intro docstring to Table class
This is such a central class that it should have a docstring.
docs: improve .case() and .cases() docstrings
the one set of examples wasn't rendering because interactive mode was off, and it wasn't very useful anyway because it wasn't acting on concrete data.
test(perf): run all tpch queries in a single process to avoid high me…
…mory usage and multiple data loads
feat(ux): fix long links, add repr links in vscode
Before, long links would take you to the truncated version, eg https://www.super.long.url.that.is.trucated.com would both display and link to https://www.super.long.url.tha... Now it just renders as that, but links to the full url. This also makes links render in vscode notebook environment. Before, links were rendering correctly in ipython console. But, they weren't showing up as links in vscode notebook environment either. This commit adds vscode functionality.
docs: add deprecation to .nullifzero docstring
Although users got a deprecationWarning whenever they used these in code, in the docs there is no indication they are deprecated.