https://github.com/GPflow/GPflow
Raw File
Tip revision: b83f1247a3a275c5ec83f1bfab68c559f301d9a1 authored by vdutor on 13 May 2020, 07:49:01 UTC
Merge branch 'develop'
Tip revision: b83f124
versions.py
import pkg_resources

try:
    __version__ = str(pkg_resources.get_distribution("gpflow").parsed_version)
except pkg_resources.DistributionNotFound:
    __version__ = "develop"
back to top