https://github.com/GPflow/GPflow
Raw File
Tip revision: a3a896e00de24d0548ad0dc8afd914f0386c281f authored by uri-granta on 09 August 2023, 08:32:29 UTC
Merge pull request #2084 from GPflow/develop
Tip revision: a3a896e
versions.py
import pkg_resources

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