Revision f024b7ba0a61ae13c7ea4855243992222060f3f6 authored by Sasha Sheng on 08 April 2021, 19:39:46 UTC, committed by Facebook GitHub Bot on 08 April 2021, 19:40:56 UTC
Summary:
* onboard the lightning trainer to use the new datamodule api
* to test: run: - `pytest tests`

Pull Request resolved: https://github.com/facebookresearch/mmf/pull/860

Reviewed By: apsdehal

Differential Revision: D27617952

Pulled By: ytsheng

fbshipit-source-id: 8881ed40840b85049735bf1fdf33a3f57b0d1987
1 parent b093095
Raw File
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