mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-14 09:43:14 +00:00
Merge pull request #236373 from fabaff/jaxopt-fix
python311Packages.jaxopt: disable failing tests
This commit is contained in:
commit
d1f115791b
@ -17,6 +17,8 @@
|
|||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jaxopt";
|
pname = "jaxopt";
|
||||||
version = "0.5.5";
|
version = "0.5.5";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
@ -50,6 +52,11 @@ buildPythonPackage rec {
|
|||||||
"jaxopt.tree_util"
|
"jaxopt.tree_util"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# Stack frame issue
|
||||||
|
"test_bisect"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://jaxopt.github.io";
|
homepage = "https://jaxopt.github.io";
|
||||||
description = "Hardware accelerated, batchable and differentiable optimizers in JAX";
|
description = "Hardware accelerated, batchable and differentiable optimizers in JAX";
|
||||||
|
Loading…
Reference in New Issue
Block a user