From 3cfe8235e4a4c6fa55b389d4cdea560adabea8e2 Mon Sep 17 00:00:00 2001 From: Samuel Ainsworth Date: Wed, 2 Feb 2022 02:56:28 +0000 Subject: [PATCH] python3Packages.wandb: 0.12.9 -> 0.12.10 --- .../python-modules/wandb/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pkgs/development/python-modules/wandb/default.nix b/pkgs/development/python-modules/wandb/default.nix index f4d14ed2e897..6b10b30a1930 100644 --- a/pkgs/development/python-modules/wandb/default.nix +++ b/pkgs/development/python-modules/wandb/default.nix @@ -1,4 +1,5 @@ -{ bokeh +{ azure-core +, bokeh , buildPythonPackage , click , configparser @@ -11,6 +12,7 @@ , jsonschema , lib , matplotlib +, nbformat , pandas , pathtools , promise @@ -35,13 +37,13 @@ buildPythonPackage rec { pname = "wandb"; - version = "0.12.9"; + version = "0.12.10"; src = fetchFromGitHub { owner = pname; repo = "client"; rev = "v${version}"; - sha256 = "0704iv5dlsjs0gj6l4nx9hk9kzq46wlgd67ifw7i3qk6v4ljfs6y"; + sha256 = "198c6zx7xih74cw0dwfqw7s7b7whik7wv4nfq6x6xw0kw86r6hby"; }; # The wandb requirements.txt does not distinguish python2/3 dependencies. We @@ -74,10 +76,6 @@ buildPythonPackage rec { ]; disabledTestPaths = [ - # Tests that require docker access, not possible in the nix build environment. - "tests/launch/test_launch.py" - "tests/launch/test_launch_cli.py" - # Tests that try to get chatty over sockets or spin up servers, not possible in the nix build environment. "tests/test_cli.py" "tests/test_data_types.py" @@ -92,7 +90,6 @@ buildPythonPackage rec { "tests/test_metric_internal.py" "tests/test_mode_disabled.py" "tests/test_mp_full.py" - "tests/test_notebooks.py" "tests/test_public_api.py" "tests/test_redir.py" "tests/test_runtime.py" @@ -110,14 +107,19 @@ buildPythonPackage rec { # Fails and borks the pytest runner as well. "tests/wandb_test.py" + + # Tries to access /homeless-shelter + "tests/test_tables.py" ]; checkInputs = [ + azure-core bokeh flask jsonref jsonschema matplotlib + nbformat pandas pydantic pytest-mock