oseledets / ttpy

Python implementation of the TT-Toolbox
MIT License
241 stars 67 forks source link

Use proper GCD due deprecation at bpo-39350 #86

Closed daskol closed 3 years ago

daskol commented 3 years ago

Function fractions.gcd was deprecated since Python 3.5 (bpo-22486) and removed since Python 3.9 (bpo-39350). Now, we should use math.gcd instead of fractions.gcd.