Revision 73be334e7e98144f282822aea89266d800800ea5 authored by ST John on 24 March 2022, 13:41:58 UTC, committed by ST John on 24 March 2022, 13:41:58 UTC
1 parent 0b63b62
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