IMP  2.3.0
The Integrative Modeling Platform
score_functor/_version_check.py
1 def check_version(myversion):
2  def _check_one(name, expected, found):
3  if expected != found:
4  message = "Expected version " + expected + " but got " + found + " when loading module " + name + ". Please make sure IMP is properly built and installed and that matching python and C++ libraries are used."
5  raise RuntimeError(message)
6  version = '2.3.0'
7  _check_one('2.3.0', version, myversion)
8