https://github.com/GPflow/GPflow
Raw File
Tip revision: 0e5acd08ee1706f7befaa89c60de6d82a909585c authored by Alan Saul on 30 January 2023, 16:45:04 UTC
Formatting
Tip revision: 0e5acd0
versions.py
import pkg_resources

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