Skip to content

Commit

Permalink
FIX: Fix ImportError for gcd (#573)
Browse files Browse the repository at this point in the history
* FIX: Fix ImportError for `gcd`

* add testing agains python=3.9

* Revert "add testing agains python=3.9"

This reverts commit 46e6f3c.

Co-authored-by: mmcky <mamckay@gmail.com>
  • Loading branch information
oyamad and mmcky committed Mar 1, 2021
1 parent e5ccec1 commit e5d5eaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion quantecon/graph_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import numpy as np
from scipy import sparse
from scipy.sparse import csgraph
from fractions import gcd
from math import gcd
from numba import jit

from .util import check_random_state
Expand Down
2 changes: 1 addition & 1 deletion quantecon/markov/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"""
import numbers
from fractions import gcd
from math import gcd
import numpy as np
from scipy import sparse
from numba import jit
Expand Down

0 comments on commit e5d5eaa

Please sign in to comment.