python3Packages.wandb: 0.12.9 -> 0.12.10

This commit is contained in:
Samuel Ainsworth 2022-02-02 02:56:28 +00:00
parent c613c25b22
commit 3cfe8235e4

View File

@ -1,4 +1,5 @@
{ bokeh { azure-core
, bokeh
, buildPythonPackage , buildPythonPackage
, click , click
, configparser , configparser
@ -11,6 +12,7 @@
, jsonschema , jsonschema
, lib , lib
, matplotlib , matplotlib
, nbformat
, pandas , pandas
, pathtools , pathtools
, promise , promise
@ -35,13 +37,13 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "wandb"; pname = "wandb";
version = "0.12.9"; version = "0.12.10";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;
repo = "client"; repo = "client";
rev = "v${version}"; rev = "v${version}";
sha256 = "0704iv5dlsjs0gj6l4nx9hk9kzq46wlgd67ifw7i3qk6v4ljfs6y"; sha256 = "198c6zx7xih74cw0dwfqw7s7b7whik7wv4nfq6x6xw0kw86r6hby";
}; };
# The wandb requirements.txt does not distinguish python2/3 dependencies. We # The wandb requirements.txt does not distinguish python2/3 dependencies. We
@ -74,10 +76,6 @@ buildPythonPackage rec {
]; ];
disabledTestPaths = [ 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 that try to get chatty over sockets or spin up servers, not possible in the nix build environment.
"tests/test_cli.py" "tests/test_cli.py"
"tests/test_data_types.py" "tests/test_data_types.py"
@ -92,7 +90,6 @@ buildPythonPackage rec {
"tests/test_metric_internal.py" "tests/test_metric_internal.py"
"tests/test_mode_disabled.py" "tests/test_mode_disabled.py"
"tests/test_mp_full.py" "tests/test_mp_full.py"
"tests/test_notebooks.py"
"tests/test_public_api.py" "tests/test_public_api.py"
"tests/test_redir.py" "tests/test_redir.py"
"tests/test_runtime.py" "tests/test_runtime.py"
@ -110,14 +107,19 @@ buildPythonPackage rec {
# Fails and borks the pytest runner as well. # Fails and borks the pytest runner as well.
"tests/wandb_test.py" "tests/wandb_test.py"
# Tries to access /homeless-shelter
"tests/test_tables.py"
]; ];
checkInputs = [ checkInputs = [
azure-core
bokeh bokeh
flask flask
jsonref jsonref
jsonschema jsonschema
matplotlib matplotlib
nbformat
pandas pandas
pydantic pydantic
pytest-mock pytest-mock