https://github.com/facebookresearch/pythia
Raw File
Tip revision: 2bfba5892f0669c67385829eb4496a74a55d1b7f authored by Vedanuj Goswami on 08 June 2021, 15:04:37 UTC
[WIP][feat] FSDP
Tip revision: 2bfba58
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