-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds method access in isolated functions (#280)
* Adds method access in isolated functions * Changes the name of the optional dependency for ehrlich * Updates ehrlich testing to include modifying the underlying env * Comments the old test again * Bumps version
- Loading branch information
1 parent
e9d0cc6
commit 51ebfc4
Showing
7 changed files
with
66 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "poli" | ||
version = "1.0.0.dev11" | ||
version = "1.0.0.dev12" | ||
description = "poli, a library of discrete objective functions" | ||
readme = "README.md" | ||
authors = [{name="Miguel González-Duque", email="[email protected]"}, {name="Simon Bartels"}] | ||
|
@@ -38,7 +38,10 @@ protein = [ | |
"python-levenshtein", | ||
"pdb-tools", | ||
] | ||
ehrlich_holo = [ | ||
ehrlich = [ | ||
"pytorch-holo", | ||
] | ||
ehrlichholo = [ | ||
"pytorch-holo", | ||
] | ||
tdc = [ | ||
|
@@ -76,7 +79,7 @@ profile = "black" | |
exclude = ["src/poli/core/util/proteins/rasp/inner_rasp", "src/poli/objective_repository/gfp_cbas"] | ||
|
||
[tool.bumpversion] | ||
current_version = "1.0.0.dev11" | ||
current_version = "1.0.0.dev12" | ||
parse = """(?x) | ||
(?P<major>0|[1-9]\\d*)\\. | ||
(?P<minor>0|[1-9]\\d*)\\. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = poli | ||
version = "1.0.0.dev11" | ||
version = "1.0.0.dev12" | ||
author = Miguel González-Duque | ||
author_email = [email protected] | ||
description = A library of discrete objective functions | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters