Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
DhanshreeA authored Aug 9, 2024
2 parents a453f8b + 1fc1dca commit cef9a22
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ersilia/_static_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.1.35"
version = "0.1.36"
3 changes: 3 additions & 0 deletions ersilia/hub/content/catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,13 +193,16 @@ def local(self):
if not self._is_eos(model_id):
continue
card = mc.get(model_id)
if "card" in card:
card = card["card"]
slug = self._get_slug(card)
title = self._get_title(card)
status = self._get_status(card)
inputs = self._get_input(card)
output = self._get_output(card)
service_class = mc.get_service_class(model_id)
R += [[model_id, slug, title, status, inputs, output, service_class]]

columns = [
"Identifier",
"Slug",
Expand Down
1 change: 1 addition & 0 deletions ersilia/setup/requirements/bentoml.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import os
import shutil

from ...utils.logging import make_temp_dir

class BentoMLRequirement(object):
def __init__(self):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "ersilia"
version = "0.1.35"
version = "0.1.36"
description = "A hub of AI/ML models for open source drug discovery and global health"
license = "GPLv3"
authors = ["Ersilia Open Source Initiative <hello@ersilia.io>"]
Expand Down

0 comments on commit cef9a22

Please sign in to comment.