https://github.com/GPflow/GPflow
Raw File
Tip revision: 3bba344ff65e112cea1aef3a6087bc7d611a0ad1 authored by Artem Artemev on 26 January 2023, 16:01:40 UTC
Use PyPi token for package uploading (#2043)
Tip revision: 3bba344
versions.py
import pkg_resources

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