Revision 711788506116546465a01ca30f2eab969eb081f3 authored by ST John on 29 April 2021, 10:40:46 UTC, committed by ST John on 29 April 2021, 10:40:46 UTC
1 parent 9779e57
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