Revision 9f50087b752cd23624daefb624dbbe1a174694ab authored by John Mcleod on 15 April 2021, 15:40:55 UTC, committed by GitHub on 15 April 2021, 15:40:55 UTC
* Bump version to 2.1.5
* add release notes section for 2.2.0.
1 parent 1d96af4
Raw File
versions.py
import pkg_resources

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