Skip to content

Commit b69a5fe

Browse files
Merge pull request #294 from macrocosm-os/staging
Staging
2 parents 0fcd16b + 483de5c commit b69a5fe

File tree

4 files changed

+384
-319
lines changed

4 files changed

+384
-319
lines changed

folding/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from .protocol import JobSubmissionSynapse
22
from .validators.protein import Protein
33

4-
__version__ = "1.3.1"
4+
__version__ = "1.3.2"
55
version_split = __version__.split(".")
66
__spec_version__ = (
77
(10000 * int(version_split[0]))

folding/base/neuron.py

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
from folding.utils.config import check_config, add_args, config
2828
from folding.utils.misc import ttl_get_block
2929
from folding import __spec_version__ as spec_version
30+
from folding import __version__ as version
3031
from folding import __OPENMM_VERSION_TAG__
3132
from folding.utils.ops import OpenMMException, load_pkl, write_pkl
3233
from folding.mock import MockSubtensor, MockMetagraph
@@ -105,6 +106,8 @@ def __init__(self, config=None):
105106
)
106107
self.step = 0
107108

109+
logger.info(f"Running spec version: {spec_version} --> Version: {version}")
110+
108111
def check_openmm_version(self):
109112
"""
110113
A method that enforces that the OpenMM version that is running the version specified in the __OPENMM_VERSION_TAG__.

0 commit comments

Comments
 (0)