https://github.com/facebookresearch/pythia
Raw File
Tip revision: d656e49e89d10cea69991378da5f903ab0101569 authored by sash on 08 September 2021, 16:46:54 UTC
[fix] demjson depends on Setuptools 58.0.0, which has removed support for 2to3, so import would fail
Tip revision: d656e49
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