Skip to content

Commit 8c7bc57

Browse files
chore(deps): lock file maintenance (ibis-project#10731)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Phillip Cloud <[email protected]>
1 parent 2e56acb commit 8c7bc57

7 files changed

+47
-44
lines changed

.codespellrc

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[codespell]
2-
# local codespell matches `./docs`, pre-commit codespell matches `docs`
3-
skip = *.lock,.direnv,.git,./docs/_freeze,./docs/_output/**,./docs/_inv/**,docs/_freeze/**,*.svg,*.css,*.html,*.js,ibis/backends/tests/tpc/queries/duckdb/ds/*.sql
2+
skip = *.lock,.direnv,.git,**/lms-for-data/index.qmd,**/docs/_output,**/docs/_inv,*.svg,*.css,*.html,*.js,**/html.json,**/tpc/queries/duckdb/ds/*.sql
43
ignore-regex = \b(i[if]f|I[IF]F|AFE|alls)\b
54
builtin = clear,rare,names
65
ignore-words-list = tim,notin,ang

.pre-commit-config.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ default_stages:
1818
- pre-commit
1919
repos:
2020
- repo: https://github.com/rhysd/actionlint
21-
rev: v1.7.1
21+
rev: v1.7.7
2222
hooks:
2323
- id: actionlint-system
2424
- repo: https://github.com/codespell-project/codespell
25-
rev: v2.3.0
25+
rev: v2.4.0
2626
hooks:
2727
- id: codespell
2828
additional_dependencies:
@@ -58,7 +58,7 @@ repos:
5858
hooks:
5959
- id: yamllint
6060
- repo: https://github.com/pre-commit/pre-commit-hooks
61-
rev: v4.6.0
61+
rev: v5.0.0
6262
hooks:
6363
- id: check-added-large-files
6464
args: ["--maxkb=800"]
@@ -78,6 +78,7 @@ repos:
7878
- id: trailing-whitespace
7979
args: ["--markdown-linebreak-ext=md"]
8080
exclude: .+/snapshots/.+
81+
- id: forbid-submodules
8182
- repo: meta
8283
hooks:
8384
- id: check-hooks-apply

flake.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ibis/expr/api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -728,7 +728,7 @@ def random() -> ir.FloatingScalar:
728728
## Repeated use of `random`
729729
730730
`ibis.random()` will generate a column of distinct random numbers even if
731-
the same instance of `ibis.random()` is re-used.
731+
the same instance of `ibis.random()` is reused.
732732
733733
When Ibis compiles an expression to SQL, each place where `random` is used
734734
will render as a separate call to the given backend's random number

ibis/selectors.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,10 @@ def matches(regex: str | re.Pattern) -> Selector:
365365
--------
366366
>>> import ibis
367367
>>> import ibis.selectors as s
368-
>>> t = ibis.table(dict(ab="string", abd="int", be="array<string>"))
368+
>>> t = ibis.table(dict(ab="string", abc="int", be="array<string>"))
369369
>>> expr = t.select(s.matches(r"ab+"))
370370
>>> expr.columns
371-
('ab', 'abd')
371+
('ab', 'abc')
372372
373373
See Also
374374
--------

requirements-dev.txt

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

uv.lock

+31-28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)