https://github.com/GPflow/GPflow
Raw File
Tip revision: a90aa72b1fdba4fa99eaeba6742ceb330f87dee6 authored by Uri Granta on 27 November 2023, 13:42:49 UTC
Update RELEASE.md
Tip revision: a90aa72
versions.py
import pkg_resources

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