https://github.com/facebookresearch/pythia
Raw File
Tip revision: 1fbf93c64f067f4d6e5519b066b7b7ec671c8dcf authored by Vedanuj Goswami on 26 June 2021, 20:26:56 UTC
[chores] PT upgrade
Tip revision: 1fbf93c
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