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: 9451f83af5837abf7058ea9f70c41f318760cf85 (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