Skip to content

Commit

Permalink
refresh dependencies so that KGX test will work inside of bmt GH action
Browse files Browse the repository at this point in the history
  • Loading branch information
sierra-moxon committed Apr 8, 2024
1 parent fdbdd9e commit 01c100f
Show file tree
Hide file tree
Showing 4 changed files with 166 additions and 87 deletions.
4 changes: 2 additions & 2 deletions kgx/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def get_the_validator(
Creates and manages a default singleton Validator in the module, when called
"""
if not cls._the_validator:
cls.set_biolink_model("v3.1.2")
cls.set_biolink_model("v4.1.6")
cls._the_validator = Validator(
verbose=verbose,
progress_monitor=progress_monitor,
Expand Down Expand Up @@ -232,7 +232,7 @@ def get_required_node_properties(toolkit: Optional[Toolkit] = None) -> list:
toolkit = Validator.get_toolkit()
node_properties = toolkit.get_all_node_properties()
# TODO: remove this append statement when Biolink 3.1.3 is released - need to add domain:entity to id slot.
node_properties.append("id")
# node_properties.append("id")
required_properties = []
for p in node_properties:
element = toolkit.get_element(p)
Expand Down
Loading

0 comments on commit 01c100f

Please sign in to comment.