Revision f56e5a2e9c20b744a699e975917fd11f33d84c90 authored by ST John on 13 April 2021, 15:46:17 UTC, committed by ST John on 13 April 2021, 15:46:17 UTC
1 parent 94949b4
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