Skip to content
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
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ authors:
- family-names: "Michael"
given-names: "Richard"
title: "poli: a libary of discrete sequence objectives"
version: 1.1.1
version: 1.2.0
date-released: 2024-01-23
url: "https://github.com/MachineLearningLifeScience/poli"
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "poli-core"
version = "1.1.1"
version = "1.2.0"
description = "poli, a library of discrete objective functions"
readme = "README.md"
authors = [{name="Miguel González-Duque", email="miguelgondu@gmail.com"}, {name="Simon Bartels", email="bartels@di.ku.dk"}]
Expand Down Expand Up @@ -42,6 +42,9 @@ protein = [
"python-levenshtein",
"pdb-tools",
]
dms = [
"pandas",
]
ehrlich = [
"pytorch-holo",
]
Expand Down Expand Up @@ -78,6 +81,7 @@ markers = [
"poli__rmf: marks tests that run in poli__rmf environment",
"poli__rosetta_energy: marks tests that run in poli__rosetta_energy",
"poli__ehrlich_holo: marks tests that run in poli__ehrlich_holo environment",
"poli__dms: marks tests that run in poli__dms environment",
"unmarked: All other tests, which usually run in the base environment",
]

Expand All @@ -88,7 +92,7 @@ profile = "black"
exclude = ["src/poli/core/util/proteins/rasp/inner_rasp", "src/poli/objective_repository/gfp_cbas"]

[tool.bumpversion]
current_version = "1.1.1"
current_version = "1.2.0"
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
(?P<minor>0|[1-9]\\d*)\\.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = poli-core
version = "1.1.1"
version = "1.2.0"
author = Miguel González-Duque
author_email = miguel.gonzalez-duque@bio.ku.dk
description = A library of discrete objective functions
Expand Down
2 changes: 1 addition & 1 deletion src/poli/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""poli, a library for discrete black-box objective functions."""

__version__ = "1.1.1"
__version__ = "1.2.0"
from .core.util.isolation.instancing import instance_function_as_isolated_process

# from .core import get_problems
Expand Down
6 changes: 6 additions & 0 deletions src/poli/objective_repository/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
CelecoxibRediscoveryProblemFactory,
)
from .deco_hop.register import DecoHopBlackBox, DecoHopProblemFactory
from .dms_gb1.register import DMSGB1BlackBox, DMSGB1ProblemFactory
from .dms_trpb.register import DMSTrpBBlackBox, DMSTrpBProblemFactory
from .dockstring.register import DockstringBlackBox, DockstringProblemFactory
from .drd2_docking.register import DRD2BlackBox, DRD2ProblemFactory
from .drd3_docking.register import DRD3BlackBox, DRD3ProblemFactory
Expand Down Expand Up @@ -126,6 +128,8 @@
"aloha": AlohaProblemFactory,
"ehrlich": EhrlichProblemFactory,
"ehrlich_holo": EhrlichHoloProblemFactory,
"dms_gb1": DMSGB1ProblemFactory,
"dms_trpb": DMSTrpBProblemFactory,
"dockstring": DockstringProblemFactory,
"drd3_docking": DRD3ProblemFactory,
"foldx_rfp_lambo": FoldXRFPLamboProblemFactory,
Expand Down Expand Up @@ -175,6 +179,8 @@
"aloha": AlohaBlackBox,
"ehrlich": EhrlichBlackBox,
"ehrlich_holo": EhrlichHoloBlackBox,
"dms_gb1": DMSGB1BlackBox,
"dms_trpb": DMSTrpBBlackBox,
"dockstring": DockstringBlackBox,
"drd3_docking": DRD3BlackBox,
"foldx_rfp_lambo": FoldXRFPLamboBlackBox,
Expand Down
Empty file.
Loading