swh:1:snp:433cffed0084b9669bb5f7b535eb9dce7646a4ae
Raw File
Tip revision: 95bf01cab650bf6d58330bf2ad00a1946f21ea11 authored by ST John on 15 March 2021, 15:00:40 UTC
remove --use-feature=2020-resolver (will become an error in pip 21.0)
Tip revision: 95bf01c
versions.py
import pkg_resources

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