Python plotly.__version__() Examples

The following are 1 code examples of plotly.__version__(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module plotly , or try the search function .
Example #1
Source File: layout.py    From dtale with GNU Lesser General Public License v2.1 5 votes vote down vote up
def test_plotly_version(version_num):
    if "unknown" in plotly.__version__:
        return True
    return parse_version(plotly.__version__) >= parse_version(version_num)