From 3b79d17145618ac630d3270dcca500e4590d45f8 Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Fri, 17 Nov 2023 22:34:45 +0100 Subject: [PATCH] Fix vulnerable pyarrow version in test This is triggering dependabot alerts --- tests/test-poetry-ibis/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-poetry-ibis/pyproject.toml b/tests/test-poetry-ibis/pyproject.toml index c3be52e70..98f0b128f 100644 --- a/tests/test-poetry-ibis/pyproject.toml +++ b/tests/test-poetry-ibis/pyproject.toml @@ -68,7 +68,7 @@ lz4 = { version = ">=3.1.10,<5", optional = true } packaging = { version = ">=21.3,<24", optional = true } polars = { version = ">=0.14.18,<1", optional = true } psycopg2 = { version = ">=2.8.4,<3", optional = true } -pyarrow = { version = ">=2,<12", optional = true } +pyarrow = { version = ">=14.0.1", optional = true } pymssql = { version = ">=2.2.5,<3", optional = true } pydata-google-auth = { version = ">=1.4.0,<2", optional = true } pydruid = { version = ">=0.6.5,<1", optional = true, extras = ["sqlalchemy"] }