Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pinning to v1 library version #35

Merged
merged 3 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions cumulus_library_covid/covid_symptom/define_symptom.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" util for sql view creation"""

import ctakesclient


Expand Down
1 change: 1 addition & 0 deletions cumulus_library_covid/covid_symptom/typesystem.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" Utility classes for verifying/generating covid sql definitions"""

from cumulus_library.schema.columns import Coding, Vocab
from cumulus_library.library.schema.typesystem import Period
from cumulus_library.library.schema.valueset import (
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "cumulus-library-covid"
requires-python = ">= 3.9"
version = "0.2.2"
dependencies = [
"cumulus-library >= 1.4.0",
"cumulus-library >= 1.4.0, <2",
"sqlfluff == 2.0.2"
]
description = "SQL generation for cumulus covid symptom analysis"
Expand All @@ -28,7 +28,7 @@ build-backend = "flit_core.buildapi"

[project.optional-dependencies]
dev = [
"black",
"black >= 24.3, <25",
"pylint",
]

Expand Down
Loading