diff --git a/biomedicus_client/pyproject.toml b/biomedicus_client/pyproject.toml index 03b29205..c57709b2 100644 --- a/biomedicus_client/pyproject.toml +++ b/biomedicus_client/pyproject.toml @@ -37,7 +37,7 @@ classifiers = [ 'Topic :: Text Processing :: Linguistic' ] dependencies = [ - "mtap>=1.4.3", + "mtap==1.5.0", "tqdm==4.67.1", "pyyaml==6.0.2" ] @@ -57,5 +57,5 @@ include = ["biomedicus_client*"] [tool.setuptools_scm] write_to = "biomedicus_client/src/biomedicus_client/version.py" -fallback_version = "3.4.3" +fallback_version = "3.5.0" root = ".." diff --git a/java/build.gradle b/java/build.gradle index 1e8a3089..1aeef747 100644 --- a/java/build.gradle +++ b/java/build.gradle @@ -69,7 +69,7 @@ repositories { dependencies { implementation group: 'org.jetbrains', name: 'annotations', version: '26.0.2' - implementation group: 'edu.umn.nlpie', name: 'mtap', version: '1.4.+' + implementation group: 'edu.umn.nlpie', name: 'mtap', version: '1.5.0' implementation group: 'org.slf4j', name: 'slf4j-api', version: '2.0.16' implementation group: 'args4j', name: 'args4j', version: '2.37' diff --git a/pyproject.toml b/pyproject.toml index 0ef85045..e358c3c5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,7 +36,7 @@ classifiers = [ 'Topic :: Text Processing :: Linguistic' ] dependencies = [ - "biomedicus_client>=3.4.3", # We get mtap and tqdm transitively from the client + "biomedicus_client==3.5.0", # We get mtap and tqdm transitively from the client "numpy==2.0.2", "regex==2024.11.6", "torch==2.5.1", @@ -67,4 +67,4 @@ include = ["biomedicus*"] [tool.setuptools_scm] write_to = "python/biomedicus/version.py" -fallback_version = "3.4.3" +fallback_version = "3.5.0"