Revision 964cfeeb98d02f9a6356e00beb59819aa7414158 authored by Nicolas Durrande on 11 March 2020, 13:24:49 UTC, committed by GitHub on 11 March 2020, 13:24:49 UTC
Co-Authored-By: st-- <st--@users.noreply.github.com>
1 parent 78975cb
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