https://github.com/facebookresearch/pythia
Raw File
Tip revision: 58c1862f2188a51785207c213d5d93268d1c2d91 authored by dependabot[bot] on 15 March 2023, 10:29:03 UTC
Bump webpack from 5.75.0 to 5.76.1 in /website
Tip revision: 58c1862
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