https://github.com/GPflow/GPflow
Revision 565433642813dc38dfcf43042fccee3992d61509 authored by Sergio Diaz on 07 October 2019, 14:50:13 UTC, committed by Sergio Diaz on 07 October 2019, 14:50:13 UTC
2 parent s ecd0b82 + ab73c4b
Raw File
Tip revision: 565433642813dc38dfcf43042fccee3992d61509 authored by Sergio Diaz on 07 October 2019, 14:50:13 UTC
merging
Tip revision: 5654336
versions.py
import pkg_resources

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