https://github.com/GPflow/GPflow
Raw File
Tip revision: 3c35cf7ac8e479fa6213500762c88bcef97f28a4 authored by Uri Granta on 08 January 2024, 08:43:44 UTC
Merge remote-tracking branch 'origin/develop' into uri/test_sgpr_changepoint_issue
Tip revision: 3c35cf7
versions.py
import pkg_resources

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