Source code for milliontrees.version

# Adapted from https://github.com/snap-stanford/ogb/blob/master/ogb/version.py

import os
import logging
from threading import Thread

__version__ = "0.11.0"

try:
    os.environ['OUTDATED_IGNORE'] = '1'
    from outdated import check_outdated  # noqa
except ImportError:
    check_outdated = None


[docs] def check(): try: is_outdated, latest = check_outdated('milliontrees', __version__) if is_outdated: logging.warning( f'The milliontrees package is out of date. Your version is ' f'{__version__}, while the latest version is {latest}.') except Exception: pass
if check_outdated is not None: thread = Thread(target=check) thread.start()