https://github.com/GPflow/GPflow
Raw File
Tip revision: 9c18dfac3d91fdfe5645c4237237461cb2f59b09 authored by stefanos on 17 December 2020, 17:17:57 UTC
correcting freeze
Tip revision: 9c18dfa
versions.py
import pkg_resources

try:
    __version__ = str(pkg_resources.get_distribution("gpflow").parsed_version)
except pkg_resources.DistributionNotFound:
    __version__ = "develop"
back to top