Casting float value to integer in Numpy
Created by: Durman
Problem statement
In Blender 2.92 there was no errors. The source of the problem is changes in NumPy library.

# NumPy v1.17.5
>>> numpy.linspace(0.1, 0.1, 2.5)
array([0.1, 0.1])
# NumPy v1.19.5
>>> numpy.linspace(0.1, 0.1, 2.5)
Traceback (most recent call last):
File "C:\Program Files\Blender Foundation\Blender 2.93\2.93\python\lib\site-packages\numpy\core\function_base.py", line 113, in linspace
num = operator.index(num)
TypeError: 'float' object cannot be interpreted as an integer
The number range node is not the only node to be suffered I guess.
-
Number range -
Beveal a curve Mesh -
Evaluate Curve