From f4252d5fed6c666a6f5b67f4e7c4c48764786711 Mon Sep 17 00:00:00 2001 From: Paul Sanders Date: Thu, 2 Nov 2023 18:52:23 -0400 Subject: [PATCH] Pin pyarrow to <13 because if issues with breaking change --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 1a0dc18..3ad75d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ include = ["sas7bdat_converter/py.typed"] python = "^3.8.0" pandas = ">=1.2.0" openpyxl = {version = ">=3.0.5", optional = true} -pyarrow = {version = ">=9.0.0", optional = true} +pyarrow = {version = ">=9.0.0, <13.0.0", optional = true} [tool.poetry.extras] excel = ["openpyxl"]