Skip to content

Commit b1df299

Browse files
committed
chore(deps): bump and relock
1 parent 10ae655 commit b1df299

File tree

50 files changed

+2448
-2279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+2448
-2279
lines changed

.github/workflows/nix-skip-helper.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
os:
3737
- ubuntu-latest # x86_64-linux
3838
- ubuntu-24.04-arm # aarch64-linux
39-
- macos-13 # x86_64-darwin
4039
- macos-14 # aarch64-darwin
4140
- macos-15 # aarch64-darwin
4241
python-version:

.github/workflows/nix.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ jobs:
3838
os:
3939
- ubuntu-latest # x86_64-linux
4040
- ubuntu-24.04-arm # aarch64-linux
41-
- macos-13 # x86_64-darwin
4241
- macos-14 # aarch64-darwin
4342
- macos-15 # aarch64-darwin
4443
python-version:

compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ services:
101101
- trino
102102

103103
minio:
104-
image: bitnami/minio:2025.7.23
104+
image: bitnamilegacy/minio:2025.7.23
105105
environment:
106106
MINIO_ROOT_USER: accesskey
107107
MINIO_ROOT_PASSWORD: secretkey
@@ -590,7 +590,7 @@ services:
590590
- risingwave
591591

592592
spark-connect:
593-
image: bitnami/spark:3.5.6
593+
image: bitnamilegacy/spark:3.5.6
594594
ports:
595595
- 15002:15002
596596
command: /opt/bitnami/spark/sbin/start-connect-server.sh --name ibis_testing --packages org.apache.spark:spark-connect_2.12:3.5.3,org.apache.iceberg:iceberg-spark-runtime-3.5_2.12:1.6.1,io.delta:delta-spark_2.12:3.3.0

flake.lock

Lines changed: 12 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161

6262
backendDevDeps = with pkgs; [
6363
# impala UDFs
64-
clang_15
64+
clang_21
6565
cmake
6666
ninja
6767
# snowflake
@@ -158,7 +158,6 @@
158158
PYSPARK_PYTHON = "${env}/bin/python";
159159

160160
AWS_PROFILE = "ibis-testing";
161-
AWS_REGION = "us-east-2";
162161

163162
# needed for mssql+pyodbc
164163
ODBCSYSINI = pkgs.writeTextDir "odbcinst.ini" ''

ibis/backends/bigquery/tests/system/test_connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,5 +277,5 @@ def test_project_id_from_default(default_credentials):
277277

278278

279279
def test_project_id_missing(credentials):
280-
with pytest.raises(ValueError, match="Project ID could not be identified.*"):
280+
with pytest.raises(ValueError, match=r"Project ID could not be identified.*"):
281281
ibis.bigquery.connect(credentials=credentials)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
SELECT
2-
approx_quantiles(IF(`t0`.`month` > 0, `t0`.`double_col`, NULL), IF(`t0`.`month` > 0, 2, NULL))[offset(1)] AS `ApproxMedian_double_col_Greater_month_0`
2+
APPROX_QUANTILES(IF(`t0`.`month` > 0, `t0`.`double_col`, NULL), IF(`t0`.`month` > 0, 2, NULL))[offset(1)] AS `ApproxMedian_double_col_Greater_month_0`
33
FROM `functional_alltypes` AS `t0`
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
SELECT
2-
approx_quantiles(`t0`.`double_col`, 2)[offset(1)] AS `ApproxMedian_double_col`
2+
APPROX_QUANTILES(`t0`.`double_col`, 2)[offset(1)] AS `ApproxMedian_double_col`
33
FROM `functional_alltypes` AS `t0`
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
SELECT
22
[
3-
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[1],
4-
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[2],
5-
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS)[3]
3+
APPROX_QUANTILES(`t0`.`double_col`, 4 IGNORE NULLS)[1],
4+
APPROX_QUANTILES(`t0`.`double_col`, 4 IGNORE NULLS)[2],
5+
APPROX_QUANTILES(`t0`.`double_col`, 4 IGNORE NULLS)[3]
66
] AS `qs`
77
FROM `functional_alltypes` AS `t0`
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
SELECT
2-
approx_quantiles(`t0`.`double_col`, 4 IGNORE NULLS) AS `qs`
2+
APPROX_QUANTILES(`t0`.`double_col`, 4 IGNORE NULLS) AS `qs`
33
FROM `functional_alltypes` AS `t0`

0 commit comments

Comments
 (0)