Revision 120561743eaecf864a1015eaf313da0044ea7748 authored by st-- on 27 April 2021, 17:13:01 UTC, committed by GitHub on 27 April 2021, 17:13:01 UTC
1 parent b4e6298
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