From 477e940447fe590f681c775fc27a714450f1413b Mon Sep 17 00:00:00 2001 From: Matthew McDermott Date: Sat, 10 Aug 2024 13:31:57 -0400 Subject: [PATCH] Added version dependency. --- README.md | 3 ++- pyproject.toml | 5 ++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index dadc3a7..d812b51 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,8 @@ This repository consists of two key pieces: ## Quick Start -To use MEDS-Tab, install the dependencies following commands below: +To use MEDS-Tab, install the dependencies following commands below. Note that this version of MEDS-Tab is +compatible with [MEDS v0.3](https://github.com/Medical-Event-Data-Standard/meds/releases/tag/0.3.0) **Pip Install** diff --git a/pyproject.toml b/pyproject.toml index 1dd0be7..1b1d70e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,10 @@ classifiers = [ "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ] -dependencies = ["polars", "pyarrow", "loguru", "hydra-core", "numpy", "scipy<1.14.0", "pandas", "tqdm", "xgboost", "scikit-learn", "hydra-optuna-sweeper", "hydra-joblib-launcher", "ml-mixins"] +dependencies = [ + "polars", "pyarrow", "loguru", "hydra-core", "numpy", "scipy<1.14.0", "pandas", "tqdm", "xgboost", + "scikit-learn", "hydra-optuna-sweeper", "hydra-joblib-launcher", "ml-mixins", "meds==0.3" +] [project.scripts] meds-tab-describe = "MEDS_tabular_automl.scripts.describe_codes:main"