https://github.com/GPflow/GPflow
Raw File
Tip revision: 4c82e453a3bda760923b4a643343d484a328c1fe authored by st-- on 01 April 2021, 14:35:55 UTC
Merge branch 'develop' into st/clean_up_broadcasting_conditionals
Tip revision: 4c82e45
versions.py
import pkg_resources

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