https://github.com/facebookresearch/pythia
Raw File
Tip revision: e6685513a4b17e3aee6a07b37c56c714b0d62e4b authored by ryan-qiyu-jiang on 16 December 2021, 23:18:48 UTC
[docs] Update UNITER project doc
Tip revision: e668551
version.py
# Copyright (c) Facebook, Inc. and its affiliates.

import sys


__version__ = "1.0.0rc12"

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


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