提交 3c5de93c authored 作者: Miro Hrončok's avatar Miro Hrončok

Use math.gcd instead of fractions.gcd when possible

fractions.gcd() function has been removed from Python 3.9, it was deprecated since Python 3.5. https://docs.python.org/3.9/whatsnew/3.9.html#removed
上级 4270277f
......@@ -6,7 +6,10 @@ from __future__ import absolute_import, print_function, division
import logging
from six import reraise, integer_types
import sys
from fractions import gcd
try:
from math import gcd
except ImportError:
from fractions import gcd
import theano
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论