Revision 6f7f0d8bcbcaa499fa4477885e6c964468e6dcf9 authored by st-- on 07 October 2020, 15:58:01 UTC, committed by GitHub on 07 October 2020, 15:58:01 UTC
2 parent s aa875b1 + 9f95d87
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