ogrisel / pygbm

Experimental Gradient Boosting Machines in Python with numba.
MIT License
183 stars 32 forks source link

Fix dependency versions #29

Closed Laurae2 closed 6 years ago

Laurae2 commented 6 years ago

Fixes #28 where pygbm requires scikit-learn at least version 0.20 for the function check_scoring.

In addition, numba version 0.39 or higher is required for fixing "NotImplementedError: unsupported nested memory-managed object". See https://github.com/numba/numba/pull/2840

codecov-io commented 6 years ago

Codecov Report

Merging #29 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #29   +/-   ##
=======================================
  Coverage   94.43%   94.43%           
=======================================
  Files           8        8           
  Lines         755      755           
=======================================
  Hits          713      713           
  Misses         42       42

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 69e96fb...76b9054. Read the comment docs.

ogrisel commented 6 years ago

Thanks!