https://github.com/facebookresearch/pythia
Raw File
Tip revision: b771f97adb7f544ed7ffdd02fd486459899c7677 authored by Sasha Sheng on 29 June 2021, 21:13:48 UTC
[fix] black and isort (#991)
Tip revision: b771f97
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