Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils.py « ant_landscape - git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7687bd54ea4e6ef08ccf393bafaad4692806f00b (plain)
1
2
3
4
5
6
7
8
# SPDX-License-Identifier: GPL-2.0-or-later

numexpr_available=False
try:
    import numexpr
    numexpr_available=True
except ImportError:
    pass