Skip to content

Commit

Permalink
fix(deps): update dependency sqlglot to >=23.4,<25.7 (#9628)
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 <417981+cpcloud@users.noreply.github.com>
  • Loading branch information
renovate[bot] and cpcloud authored Jul 18, 2024
1 parent 29fb196 commit f5207ff
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
15 changes: 9 additions & 6 deletions ibis/backends/tests/test_struct.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,15 +156,18 @@ def test_field_access_after_case(con):
["postgres"], reason="struct literals not implemented", raises=PsycoPg2SyntaxError
)
@pytest.mark.notimpl(["flink"], raises=IbisError, reason="not implemented in ibis")
@pytest.mark.notyet(
["clickhouse"],
raises=AssertionError,
reason="sqlglot fails to parse, fall back to unknown",
)
@pytest.mark.parametrize(
"nullable",
[
param(True, id="nullable"),
param(
True,
marks=pytest.mark.notyet(
["clickhouse"],
raises=AssertionError,
reason="clickhouse doesn't allow nullable nested types",
),
id="nullable",
),
param(
False,
marks=[
Expand Down
8 changes: 4 additions & 4 deletions poetry.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pyarrow-hotfix = { version = ">=0.4,<1", optional = true }
python-dateutil = ">=2.8.2,<3"
pytz = ">=2022.7"
rich = ">=12.4.4,<14"
sqlglot = ">=23.4,<25.6"
sqlglot = ">=23.4,<25.7"
toolz = ">=0.11,<1"
typing-extensions = ">=4.3.0,<5"
black = { version = ">=22.1.0,<25", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ sortedcontainers==2.4.0 ; python_version >= "3.10" and python_version < "4.0"
soupsieve==2.5 ; python_version >= "3.10" and python_version < "3.13"
sphobjinv==2.3.1.1 ; python_version >= "3.10" and python_version < "3.13"
sqlalchemy==2.0.31 ; python_version >= "3.10" and python_version < "3.13"
sqlglot==25.5.1 ; python_version >= "3.10" and python_version < "4.0"
sqlglot==25.6.0 ; python_version >= "3.10" and python_version < "4.0"
stack-data==0.6.3 ; python_version >= "3.10" and python_version < "4.0"
statsmodels==0.14.2 ; python_version >= "3.10" and python_version < "3.13"
stdlib-list==0.10.0 ; python_version >= "3.10" and python_version < "4.0"
Expand Down

0 comments on commit f5207ff

Please sign in to comment.