https://github.com/GPflow/GPflow
Raw File
Tip revision: 91f5d411676d78e2b7453f38ddd869a7d26cae4e authored by Andrew Liubinas on 16 December 2021, 14:53:14 UTC
Remove 'EllipsisType = type(...)' which was causing mypy issues.
Tip revision: 91f5d41
versions.py
import pkg_resources

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