https://github.com/facebookresearch/pythia
Raw File
Tip revision: 584e26da541728615471f51832238706a15f0b7d authored by Vedanuj Goswami on 08 September 2020, 22:59:00 UTC
[chores] Upgrade to pytorch 1.6 and torchvision 0.7 (#546)
Tip revision: 584e26d
version.py
# Copyright (c) Facebook, Inc. and its affiliates.

import sys


__version__ = "1.0.0rc11"

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


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