https://github.com/facebookresearch/pythia
Raw File
Tip revision: 7a67d7bccebf9c971b7cbe816c24b6fa660ce0a9 authored by Amanpreet Singh on 14 October 2021, 19:31:24 UTC
[fix,chores] Lint and wandb
Tip revision: 7a67d7b
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