https://github.com/facebookresearch/pythia
Raw File
Tip revision: 954a1451656cdf9fcf7cc19f3ebff0ed086b3052 authored by sash on 22 June 2021, 00:55:15 UTC
[fix] oss and fbcode pytorch lightning version sync
Tip revision: 954a145
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