From 6eaf28c2c0f1edfc0c552ac4d8bdd381df8d8bc7 Mon Sep 17 00:00:00 2001 From: EthanSteinbergPrealize <128546843+EthanSteinbergPrealize@users.noreply.github.com> Date: Mon, 18 Mar 2024 15:55:54 -0700 Subject: [PATCH] Downgrade PyArrow to be more compatible with databricks Databricks uses pyarrow 8, so users run into problems when users try to use MEDS in a databricks environment. This fixes the problem by downgrading the dependency. As far as I can tell, this doesn't cause any issues. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 03ed990..0dcc537 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta" [project] name = "meds" -version = "0.1.2" +version = "0.1.3" description = "A data standard for working with event stream data" readme = "README.md" license = {text = "Apache-2.0"} dependencies = [ - "pyarrow >= 12", + "pyarrow >= 8", "jsonschema", "typing_extensions >= 4.0", ]