https://github.com/GPflow/GPflow
Raw File
Tip revision: bf00f571807095ab902e0d4f9bd2922a0fc0386f authored by ST John on 16 December 2020, 18:03:31 UTC
NewSVGP
Tip revision: bf00f57
versions.py
import pkg_resources

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