https://github.com/facebookresearch/pythia
Raw File
Tip revision: 50d7ba48f1bf71377d42b7d7e60d0de28890049b authored by sash on 21 June 2021, 23:45:04 UTC
[fix] refactor regression
Tip revision: 50d7ba4
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