Merge pull request #260598 from natsukium/shap/update
python311Packages.shap: 0.42.1 -> 0.43.0
This commit is contained in:
commit
9437030bbd
1 changed files with 8 additions and 6 deletions
|
@ -31,16 +31,16 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "shap";
|
pname = "shap";
|
||||||
version = "0.42.1";
|
version = "0.43.0";
|
||||||
format = "pyproject";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "slundberg";
|
owner = "slundberg";
|
||||||
repo = "shap";
|
repo = "shap";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-Ezq6WS6QnoM5uEfo2DgDAEo1HkQ1KjmfgIyVWh3RM94=";
|
hash = "sha256-ylkpXhaLXsQiu6YMC3pUtlicptQmtjITzW+ydinB4ls=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -124,9 +124,11 @@ buildPythonPackage rec {
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests = [
|
||||||
# The same reason as above test_summary.py
|
# The same reason as above test_summary.py
|
||||||
"test_simple_bar_with_cohorts_dict"
|
"test_random_force_plot_negative_sign"
|
||||||
"test_random_summary_violin_with_data2"
|
"test_random_force_plot_positive_sign"
|
||||||
"test_random_summary_layered_violin_with_data2"
|
"test_random_summary_layered_violin_with_data2"
|
||||||
|
"test_random_summary_violin_with_data2"
|
||||||
|
"test_simple_bar_with_cohorts_dict"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
|
|
Loading…
Reference in a new issue