Skip to content

Commit

Permalink
Updated to MEDS v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mmcdermott committed Aug 29, 2024
1 parent 504f48d commit ea38d40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies = [
"pytimeparse == 1.1.*",
"networkx == 3.3.*",
"pyarrow == 17.*",
"meds == 0.3.2",
"meds == 0.3.3",
]

[tool.setuptools_scm]
Expand Down
4 changes: 2 additions & 2 deletions src/aces/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import pyarrow as pa
import pyarrow.parquet as pq
from loguru import logger
from meds import label_schema, subject_id_field
from meds import label_schema, prediction_time_field, subject_id_field
from omegaconf import DictConfig

config_yaml = files("aces").joinpath("configs/aces.yaml")
Expand All @@ -28,7 +28,7 @@
"integer_value": pl.Int64,
"float_value": pl.Float64,
"categorical_value": pl.String,
"prediction_time": pl.Datetime("us"),
prediction_time_field: pl.Datetime("us"),
}


Expand Down

0 comments on commit ea38d40

Please sign in to comment.