https://github.com/facebookresearch/pythia
Raw File
Tip revision: f805f3ab082a062d31bb236e364d5c886ab160be authored by dependabot[bot] on 02 February 2023, 10:49:39 UTC
Bump ansi-regex from 4.1.0 to 4.1.1 in /website
Tip revision: f805f3a
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