https://github.com/facebookresearch/pythia
Raw File
Tip revision: bb2014b515a53c1de5d5809a761936d0ad6a6856 authored by sash on 30 June 2021, 18:34:45 UTC
[fix] minor change in base model
Tip revision: bb2014b
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