https://github.com/GPflow/GPflow
Revision 99e898823cc6ae6029276cd8327ee88016f93f54 authored by st-- on 09 October 2019, 20:19:05 UTC, committed by Artem Artemev on 09 October 2019, 20:19:05 UTC
1 parent 4dba79d
Raw File
Tip revision: 99e898823cc6ae6029276cd8327ee88016f93f54 authored by st-- on 09 October 2019, 20:19:05 UTC
Sync notebooks with develop (includes moving files from notebooks2 back to doc/source/notebooks) (#1073)
Tip revision: 99e8988
versions.py
import pkg_resources

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