lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.ignite: 0.4.5 -> 0.4.6

+5 -3
+5 -3
pkgs/development/python-modules/ignite/default.nix
··· 3 3 , fetchFromGitHub 4 4 , pytestCheckHook 5 5 , pytest-xdist 6 + , torchvision 6 7 , pythonOlder 7 8 , matplotlib 8 9 , mock ··· 14 15 15 16 buildPythonPackage rec { 16 17 pname = "ignite"; 17 - version = "0.4.5"; 18 + version = "0.4.6"; 18 19 19 20 src = fetchFromGitHub { 20 21 owner = "pytorch"; 21 22 repo = pname; 22 23 rev = "v${version}"; 23 - sha256 = "sha256-FGFpaqq7InwRqFmQTmXGpJEjRUB69ZN/l20l42L2BAA="; 24 + sha256 = "sha256-dlKGXjUUnyYmPDilo0LQg9OkSkBnMYNgzlFLIfI0T6I="; 24 25 }; 25 26 26 - checkInputs = [ pytestCheckHook matplotlib mock pytest-xdist ]; 27 + checkInputs = [ pytestCheckHook matplotlib mock pytest-xdist torchvision ]; 27 28 propagatedBuildInputs = [ pytorch scikit-learn tqdm pynvml ]; 28 29 29 30 # runs succesfully in 3.9, however, async isn't correctly closed so it will fail after test suite. ··· 38 39 "--ignore=tests/ignite/contrib/handlers/test_trains_logger.py" 39 40 "--ignore=tests/ignite/metrics/nlp/test_bleu.py" 40 41 "--ignore=tests/ignite/metrics/nlp/test_rouge.py" 42 + "--ignore=tests/ignite/metrics/gan" # requires pytorch_fid; tries to download model to $HOME 41 43 "--ignore=tests/ignite/metrics/test_dill.py" 42 44 "--ignore=tests/ignite/metrics/test_psnr.py" 43 45 "--ignore=tests/ignite/metrics/test_ssim.py"