https://github.com/GPflow/GPflow
Raw File
Tip revision: b22f50a8e2b83f8ef335fdd7598be65dacae02bd authored by Vincent Dutordoir on 12 January 2021, 12:39:23 UTC
Merge branch 'develop' into vincent/quickfix/dynamic-shapes-quadrature
Tip revision: b22f50a
versions.py
import pkg_resources

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