Skip to content

Commit

Permalink
fix building extensions Pt.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Apr 25, 2024
1 parent 04eddae commit ee690c5
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion mlsauce/booster/_booster_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from . import _boosterc as boosterc
except ImportError:
import pyximport

pyximport.install()
import _boosterc as boosterc
import numpy as np
Expand Down
1 change: 0 additions & 1 deletion mlsauce/lasso/_lasso.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
from . import _lassoc as mo
except ImportError:
import pyximport

pyximport.install()
import _lassoc as mo
from ..utils import get_beta
Expand Down
1 change: 0 additions & 1 deletion mlsauce/ridge/_ridge.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from . import _ridgec as mo
except ImportError:
import pyximport

pyximport.install()
import _ridgec as mo
from ..utils import get_beta
Expand Down
1 change: 0 additions & 1 deletion mlsauce/stump/_stump_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from . import _stumpc as stumpc
except ImportError:
import pyximport

pyximport.install()
import _stumpc as stumpc

Expand Down

0 comments on commit ee690c5

Please sign in to comment.