Revision 94949b4c7f37f71a2c5d6c316c33e7b5868ec0a0 authored by ST John on 13 April 2021, 15:45:31 UTC, committed by ST John on 13 April 2021, 15:45:31 UTC
1 parent 0853a66
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