Skip to content

Commit

Permalink
update biolink version per its release
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Mar 30, 2023
1 parent 21420e7 commit 4a2bb5e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bmt/toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
Url = str
Path = str

REMOTE_PATH = "https://raw.githubusercontent.com/biolink/biolink-model/v3.2.4/biolink-model.yaml"
PREDICATE_MAP = 'https://raw.githubusercontent.com/biolink/biolink-model/v3.2.4/predicate_mapping.yaml'
INFORES_MAP = 'https://raw.githubusercontent.com/biolink/biolink-model/v3.2.4/infores_catalog_nodes.tsv'
REMOTE_PATH = "https://raw.githubusercontent.com/biolink/biolink-model/v3.2.5/biolink-model.yaml"
PREDICATE_MAP = 'https://raw.githubusercontent.com/biolink/biolink-model/v3.2.5/predicate_mapping.yaml'
INFORES_MAP = 'https://raw.githubusercontent.com/biolink/biolink-model/v3.2.5/infores_catalog_nodes.tsv'


NODE_PROPERTY = "node property"
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_toolkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def toolkit():

def test_get_model_version(toolkit):
version = toolkit.get_model_version()
assert version == "3.2.4"
assert version == "3.2.5"


def test_get_id_prefixes(toolkit):
Expand Down

0 comments on commit 4a2bb5e

Please sign in to comment.