https://github.com/GPflow/GPflow
Raw File
Tip revision: d843d1ac0fd3148740499ff1d1661ec9929337e4 authored by Vincent Dutordoir on 04 June 2020, 14:25:58 UTC
Merge branch 'develop' into vincent/hotfix/preslicing-lmc
Tip revision: d843d1a
versions.py
import pkg_resources

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