https://github.com/GPflow/GPflow
Raw File
Tip revision: 7d50d819d2030849cd6a4173d606b81cc427eccb authored by uri-granta on 14 June 2024, 10:27:11 UTC
Merge pull request #2114 from GPflow/develop
Tip revision: 7d50d81
versions.py
import pkg_resources

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