pythonPackages.scipy_1_3: re-init for ceph
This commit is contained in:
parent
4f39f93d8e
commit
7994b94057
|
@ -112,7 +112,10 @@ let
|
||||||
ps.pyjwt
|
ps.pyjwt
|
||||||
ps.webob
|
ps.webob
|
||||||
ps.bcrypt
|
ps.bcrypt
|
||||||
ps.scipy
|
# scipy > 1.3 breaks diskprediction_local, leading to mgr hang on startup
|
||||||
|
# Bump (and get rid of scipy_1_3) once these issues are resolved:
|
||||||
|
# https://tracker.ceph.com/issues/42764 https://tracker.ceph.com/issues/45147
|
||||||
|
ps.scipy_1_3
|
||||||
ps.six
|
ps.six
|
||||||
ps.pyyaml
|
ps.pyyaml
|
||||||
]);
|
]);
|
||||||
|
|
|
@ -5902,6 +5902,15 @@ in {
|
||||||
});
|
});
|
||||||
in if pythonOlder "3.5" then scipy_1_2 else scipy_;
|
in if pythonOlder "3.5" then scipy_1_2 else scipy_;
|
||||||
|
|
||||||
|
scipy_1_3 = self.scipy.overridePythonAttrs(oldAttrs: rec {
|
||||||
|
version = "1.3.3";
|
||||||
|
src = oldAttrs.src.override {
|
||||||
|
inherit version;
|
||||||
|
sha256 = "02iqb7ws7fw5fd1a83hx705pzrw1imj7z0bphjsl4bfvw254xgv4";
|
||||||
|
};
|
||||||
|
doCheck = false;
|
||||||
|
});
|
||||||
|
|
||||||
scikitimage = callPackage ../development/python-modules/scikit-image { };
|
scikitimage = callPackage ../development/python-modules/scikit-image { };
|
||||||
|
|
||||||
scikitlearn = let
|
scikitlearn = let
|
||||||
|
|
Loading…
Reference in New Issue