https://github.com/GPflow/GPflow
Revision 5a5603dc2d4e8e09a818ef070a3056da0d4ba6c9 authored by st-- on 14 April 2020, 16:56:36 UTC, committed by GitHub on 14 April 2020, 16:56:36 UTC
* fix pyplot import for matplotlib 3.1.3 (closes #1423)
* apply same fix to other notebooks
1 parent 4821d03
Raw File
Tip revision: 5a5603dc2d4e8e09a818ef070a3056da0d4ba6c9 authored by st-- on 14 April 2020, 16:56:36 UTC
fix pyplot import in notebooks (#1433)
Tip revision: 5a5603d
versions.py
import pkg_resources

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