Revision 1171b9c16963170b6f05533042ede310cda17afb authored by Jesper Nielsen on 01 March 2022, 12:35:20 UTC, committed by GitHub on 01 March 2022, 12:35:20 UTC
2 parent s a365045 + f3d90e8
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