Skip to content

Commit

Permalink
Bugfix: numba jitclass import
Browse files Browse the repository at this point in the history
This commit fixes a bug which appeared due to the new Numba release. Numba moved jitclass import under the `numba.experimental` from `numba`. As a result it was causing issues during the CI builds and importing elastica modules. In order to solve this we removed the `jitclass` import since it is not used.
  • Loading branch information
armantekinalp committed Dec 30, 2020
1 parent 7772cf8 commit e9d101f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion elastica/_elastica_numba/_rod/_data_structures.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import numpy as np
import numba
from numba import njit, jitclass, uint32, float64
from numba import njit
from elastica._elastica_numba._rotations import _get_rotation_matrix, _rotate
from elastica._elastica_numba._linalg import _batch_matmul

Expand Down

0 comments on commit e9d101f

Please sign in to comment.