https://github.com/facebookresearch/pythia
Raw File
Tip revision: c42f208aaadf6767a2e547597f5c93f0e386b49e authored by omkar on 10 June 2020, 00:38:56 UTC
Initial Commit
Tip revision: c42f208
version.py
# Copyright (c) Facebook, Inc. and its affiliates.

import sys

__version__ = "1.0.0rc8"

msg = "MMF is only compatible with Python 3.6 and newer."


if sys.version_info < (3, 6):
    raise ImportError(msg)
back to top