Skip to content

Commit

Permalink
Merge pull request #29 from Techtonique/v0180
Browse files Browse the repository at this point in the history
bump v0.18.1
  • Loading branch information
thierrymoudiki authored May 6, 2024
2 parents af3528f + 7087bf7 commit 439ba6b
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/lsboost_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

print(f"\n ----- Running: {os.path.basename(__file__)}... ----- \n")


print(os.path.relpath(os.path.dirname(__file__)))

#wd="/workspace/mlsauce/mlsauce/examples"
#
Expand Down
2 changes: 1 addition & 1 deletion mlsauce.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: mlsauce
Version: 0.17.0
Version: 0.18.1
Summary: Miscellaneous Statistical/Machine Learning tools
Maintainer: T. Moudiki
Maintainer-email: [email protected]
Expand Down
Binary file modified mlsauce/adaopt/_adaoptc.cpython-311-darwin.so
Binary file not shown.
1 change: 0 additions & 1 deletion mlsauce/booster/_booster_classifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from sklearn.base import BaseEstimator
from sklearn.base import ClassifierMixin
from sklearn.preprocessing import PolynomialFeatures

try:
from . import _boosterc as boosterc
except ImportError:
Expand Down
5 changes: 4 additions & 1 deletion mlsauce/booster/_booster_regressor.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
from sklearn.base import BaseEstimator
from sklearn.base import RegressorMixin
from sklearn.preprocessing import PolynomialFeatures
from . import _boosterc as boosterc
try:
from . import _boosterc as boosterc
except ImportError:
import _boosterc as boosterc
from ..predictioninterval import PredictionInterval
from ..utils import cluster

Expand Down
Binary file modified mlsauce/booster/_boosterc.cpython-311-darwin.so
Binary file not shown.
Binary file modified mlsauce/lasso/_lassoc.cpython-311-darwin.so
Binary file not shown.
Binary file modified mlsauce/ridge/_ridgec.cpython-311-darwin.so
Binary file not shown.
Binary file modified mlsauce/stump/_stumpc.cpython-311-darwin.so
Binary file not shown.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'BSD3 Clause Clear'

__version__ = '0.18.0'
__version__ = '0.18.1'

VERSION = __version__

Expand Down Expand Up @@ -114,7 +114,9 @@
]

# Get the absolute path to the directory containing the setup script
script_dir = os.path.basename(__file__)
abs_path = os.path.dirname(__file__)
rel_path = os.path.relpath(abs_path)
script_dir = rel_path
# Get absolute paths to Cython source files
adaopt_cython_file = str(script_dir + 'mlsauce/adaopt/_adaoptc.pyx')
booster_cython_file = str(script_dir + 'mlsauce/booster/_boosterc.pyx')
Expand Down

0 comments on commit 439ba6b

Please sign in to comment.