https://github.com/GPflow/GPflow
Raw File
Tip revision: cb73cecc9d5a4c74988ece089e2032d8890ce85e authored by Uri Granta on 23 November 2023, 19:33:34 UTC
Fix DType (hopefully)
Tip revision: cb73cec
versions.py
import pkg_resources

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