From b25e3e4c87a5edf0c607f65ecfe94ee5c9a6592f Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Fri, 26 Feb 2021 11:19:46 +0100 Subject: [PATCH] suite/matrix: latest py3 deprecates fractions.gcd Signed-off-by: Kyrylo Shatskyy --- teuthology/suite/matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/suite/matrix.py b/teuthology/suite/matrix.py index d93acd78a..8938fe7d8 100644 --- a/teuthology/suite/matrix.py +++ b/teuthology/suite/matrix.py @@ -1,7 +1,7 @@ import os import random import heapq -from fractions import gcd +from math import gcd from functools import reduce def lcm(a, b): -- 2.47.3