https://github.com/facebookresearch/pythia
Raw File
Tip revision: 7ea5f8e989faf4b2bac409ee86b9b9dd4e822532 authored by Vedanuj Goswami on 11 June 2021, 20:23:09 UTC
fix lint
Tip revision: 7ea5f8e
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