https://github.com/facebookresearch/pythia
Raw File
Tip revision: 4347a0d04c51e6d56ffc6987ebe34b1ceb123900 authored by Amanpreet Singh on 17 September 2021, 01:47:19 UTC
fsdp
Tip revision: 4347a0d
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