Revision a964149e8e01e314e083cd81a1dfabf2a944ac19 authored by st-- on 27 April 2021, 17:46:42 UTC, committed by GitHub on 27 April 2021, 17:46:42 UTC
2 parent s b5855ba + 1205617
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