Skip to content

Commit

Permalink
chore(deps): lock file maintenance (#10731)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Phillip Cloud <[email protected]>
  • Loading branch information
renovate[bot] and cpcloud authored Jan 27, 2025
1 parent 2e56acb commit 8c7bc57
Show file tree
Hide file tree
Showing 7 changed files with 47 additions and 44 deletions.
3 changes: 1 addition & 2 deletions .codespellrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[codespell]
# local codespell matches `./docs`, pre-commit codespell matches `docs`
skip = *.lock,.direnv,.git,./docs/_freeze,./docs/_output/**,./docs/_inv/**,docs/_freeze/**,*.svg,*.css,*.html,*.js,ibis/backends/tests/tpc/queries/duckdb/ds/*.sql
skip = *.lock,.direnv,.git,**/lms-for-data/index.qmd,**/docs/_output,**/docs/_inv,*.svg,*.css,*.html,*.js,**/html.json,**/tpc/queries/duckdb/ds/*.sql
ignore-regex = \b(i[if]f|I[IF]F|AFE|alls)\b
builtin = clear,rare,names
ignore-words-list = tim,notin,ang
7 changes: 4 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ default_stages:
- pre-commit
repos:
- repo: https://github.com/rhysd/actionlint
rev: v1.7.1
rev: v1.7.7
hooks:
- id: actionlint-system
- repo: https://github.com/codespell-project/codespell
rev: v2.3.0
rev: v2.4.0
hooks:
- id: codespell
additional_dependencies:
Expand Down Expand Up @@ -58,7 +58,7 @@ repos:
hooks:
- id: yamllint
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files
args: ["--maxkb=800"]
Expand All @@ -78,6 +78,7 @@ repos:
- id: trailing-whitespace
args: ["--markdown-linebreak-ext=md"]
exclude: .+/snapshots/.+
- id: forbid-submodules
- repo: meta
hooks:
- id: check-hooks-apply
Expand Down
12 changes: 6 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ibis/expr/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ def random() -> ir.FloatingScalar:
## Repeated use of `random`
`ibis.random()` will generate a column of distinct random numbers even if
the same instance of `ibis.random()` is re-used.
the same instance of `ibis.random()` is reused.
When Ibis compiles an expression to SQL, each place where `random` is used
will render as a separate call to the given backend's random number
Expand Down
4 changes: 2 additions & 2 deletions ibis/selectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -365,10 +365,10 @@ def matches(regex: str | re.Pattern) -> Selector:
--------
>>> import ibis
>>> import ibis.selectors as s
>>> t = ibis.table(dict(ab="string", abd="int", be="array<string>"))
>>> t = ibis.table(dict(ab="string", abc="int", be="array<string>"))
>>> expr = t.select(s.matches(r"ab+"))
>>> expr.columns
('ab', 'abd')
('ab', 'abc')
See Also
--------
Expand Down
4 changes: 2 additions & 2 deletions requirements-dev.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

59 changes: 31 additions & 28 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8c7bc57

Please sign in to comment.