https://github.com/GPflow/GPflow
Raw File
Tip revision: 8ac6e358810e9e9699a7732433a0474e30961491 authored by st-- on 01 June 2020, 11:22:55 UTC
Merge branch 'develop' into st/fix_active_dims_2
Tip revision: 8ac6e35
versions.py
import pkg_resources

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