https://github.com/GPflow/GPflow
Raw File
Tip revision: 97d2d56a002f1c9c1d91c90e6bf75e17e3b66dd7 authored by Artem Artemev on 14 November 2019, 14:55:16 UTC
Change regexp
Tip revision: 97d2d56
versions.py
import pkg_resources

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