Campbell Barton
e8da6131fd
Move copyright text to SPDX-FileCopyrightText or set to the Blender Foundation so "make check_licenses" now runs without warnings.
11 lines
210 B
Python
11 lines
210 B
Python
# SPDX-FileCopyrightText: 2017-2022 Blender Foundation
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
numexpr_available = False
|
|
try:
|
|
import numexpr
|
|
numexpr_available = True
|
|
except ImportError:
|
|
pass
|