https://github.com/GPflow/GPflow
Raw File
Tip revision: 48521b03f00abade0f32c049844835cb3fc9897f authored by Fergus on 01 April 2022, 13:13:35 UTC
Merge branch 'develop' into fergus/anisotropy
Tip revision: 48521b0
versions.py
import pkg_resources

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