https://github.com/GPflow/GPflow
Revision 2a30405fefb4de21a0951c885cb38a9d295d68d9 authored by Sergio Diaz on 10 September 2019, 16:00:22 UTC, committed by Sergio Diaz on 10 September 2019, 16:00:22 UTC
# Conflicts:
#	tests/test_mean_functions.py
#	tests/test_predict.py
1 parent 4ba4cef
Raw File
Tip revision: 2a30405fefb4de21a0951c885cb38a9d295d68d9 authored by Sergio Diaz on 10 September 2019, 16:00:22 UTC
Merge branch 'awav/gpflow-2.0' into sergio_pasc/gpflow-2.0/adapt-sgpmc-and-gpmc
Tip revision: 2a30405
versions.py
import pkg_resources

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