Skip to content

Commit

Permalink
Downgrade PyArrow to be more compatible with databricks
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
EthanSteinbergPrealize authored Mar 18, 2024
1 parent 419caa7 commit 6eaf28c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]
Expand Down

0 comments on commit 6eaf28c

Please sign in to comment.