mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
python3Packages.ignite: remove optional pynvml dependency
This commit is contained in:
parent
078f5813f2
commit
6f968f1572
@ -8,7 +8,6 @@
|
|||||||
, matplotlib
|
, matplotlib
|
||||||
, mock
|
, mock
|
||||||
, pytorch
|
, pytorch
|
||||||
, pynvml
|
|
||||||
, scikit-learn
|
, scikit-learn
|
||||||
, tqdm
|
, tqdm
|
||||||
}:
|
}:
|
||||||
@ -25,7 +24,7 @@ buildPythonPackage rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytestCheckHook matplotlib mock pytest-xdist torchvision ];
|
checkInputs = [ pytestCheckHook matplotlib mock pytest-xdist torchvision ];
|
||||||
propagatedBuildInputs = [ pytorch scikit-learn tqdm pynvml ];
|
propagatedBuildInputs = [ pytorch scikit-learn tqdm ];
|
||||||
|
|
||||||
# runs succesfully in 3.9, however, async isn't correctly closed so it will fail after test suite.
|
# runs succesfully in 3.9, however, async isn't correctly closed so it will fail after test suite.
|
||||||
doCheck = pythonOlder "3.9";
|
doCheck = pythonOlder "3.9";
|
||||||
@ -51,6 +50,7 @@ buildPythonPackage rec {
|
|||||||
"idist"
|
"idist"
|
||||||
"mlflow"
|
"mlflow"
|
||||||
"tensorboard"
|
"tensorboard"
|
||||||
|
"test_gpu_info" # needs pynvml
|
||||||
"test_integration"
|
"test_integration"
|
||||||
"test_output_handler" # needs mlflow
|
"test_output_handler" # needs mlflow
|
||||||
"test_pbar" # slight output differences
|
"test_pbar" # slight output differences
|
||||||
|
Loading…
Reference in New Issue
Block a user