https://github.com/GPflow/GPflow
Raw File
Tip revision: eda49521bbf6300fd4042f8557accd9f69e9e9b8 authored by Uri Granta on 27 June 2023, 07:04:20 UTC
Prepare Release 2.8.1
Tip revision: eda4952
versions.py
import pkg_resources

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