https://github.com/facebookresearch/pythia
Raw File
Tip revision: 75ea3ab7728c62d154306e1dd74c5876f697821e authored by Ryan Jiang on 02 September 2021, 19:29:28 UTC
[fix] Add zoo requirements to coco masked config (#1072)
Tip revision: 75ea3ab
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