https://github.com/facebookresearch/pythia
Raw File
Tip revision: f4b756668caf35ddb6efc0d7883e00e6941cfd19 authored by ankitade on 19 December 2022, 23:38:34 UTC
try skipping tests
Tip revision: f4b7566
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