Skip to content

Commit

Permalink
fix(deps): update dependency sqlglot to >=23.4,<23.13 (#9056)
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Apr 26, 2024
1 parent 4615d84 commit 5dac34d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion ibis/backends/sql/datatypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
typecode.NULL: dt.Null,
typecode.NVARCHAR: dt.String,
typecode.OBJECT: partial(dt.Map, dt.string, dt.json),
typecode.ROWVERSION: partial(dt.Binary, nullable=False),
typecode.SMALLINT: dt.Int16,
typecode.SMALLMONEY: dt.Decimal(10, 4),
typecode.TEXT: dt.String,
Expand Down Expand Up @@ -86,7 +87,6 @@
# HLLSKETCH = auto()
# IMAGE = auto()
# IPPREFIX = auto()
# ROWVERSION = auto()
# SERIAL = auto()
# SET = auto()
# SMALLSERIAL = auto()
Expand Down
11 changes: 7 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 @@ -47,7 +47,7 @@ pyarrow-hotfix = ">=0.4,<1"
python-dateutil = ">=2.8.2,<3"
pytz = ">=2022.7"
rich = ">=12.4.4,<14"
sqlglot = ">=23.4,<23.12"
sqlglot = ">=23.4,<23.13"
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 @@ -274,7 +274,7 @@ sortedcontainers==2.4.0 ; python_version >= "3.9" and python_version < "4.0"
soupsieve==2.5 ; python_version >= "3.10" and python_version < "3.13"
sphobjinv==2.3.1 ; python_version >= "3.10" and python_version < "3.13"
sqlalchemy==2.0.29 ; python_version >= "3.9" and python_version < "4.0"
sqlglot==23.11.2 ; python_version >= "3.9" and python_version < "4.0"
sqlglot==23.12.1 ; python_version >= "3.9" and python_version < "4.0"
stack-data==0.6.3 ; python_version >= "3.9" 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.9" and python_version < "4.0"
Expand Down

0 comments on commit 5dac34d

Please sign in to comment.