https://github.com/facebookresearch/pythia
Raw File
Tip revision: f6334f0935e5abe4bfd4e25fa0e70cb9c9658c8a authored by dependabot[bot] on 02 February 2023, 10:49:40 UTC
Bump terser from 5.10.0 to 5.16.2 in /website
Tip revision: f6334f0
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