Revision fac31a7235a4baf7656755279912e9524914a847 authored by thevincentadam on 20 January 2020, 14:01:08 UTC, committed by thevincentadam on 20 January 2020, 14:01:08 UTC
1 parent 291ae6c
Raw File
versions.py
import pkg_resources

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