Open nishanchettri opened 1 year ago
I fixed by replacing with math.gcd
from math import gcd
In case anyone is looking for a quick workaround, I monkeypatched the import like:
import fractions, math
fractions.gcd = math.gcd # hack to fix deltasigma import
import deltasigma
Please solve this error