python311Packages.ax: 0.3.7 -> 0.4.0

This commit is contained in:
Dmitry Kalinkin 2024-05-10 03:08:04 -04:00
parent d5c611fcf5
commit 9b38b2d73d

View file

@ -20,14 +20,14 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "ax"; pname = "ax";
version = "0.3.7"; version = "0.4.0";
format = "pyproject"; format = "pyproject";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "facebook"; owner = "facebook";
repo = pname; repo = pname;
rev = "refs/tags/${version}"; rev = "refs/tags/${version}";
hash = "sha256-UOX8Q7F5c9J1KSfQUy8aoL5CNb9YmEI4X7Fd5B16UqQ="; hash = "sha256-dj6Gig8N4oLtcZLwPl4QDHG/FwA2nFBtYxSARnWiJJU=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -73,6 +73,8 @@ buildPythonPackage rec {
"test_get_standard_plots_moo" "test_get_standard_plots_moo"
# AssertionError: Expected 'warning' to be called once. Called 3 times # AssertionError: Expected 'warning' to be called once. Called 3 times
"test_validate_kwarg_typing" "test_validate_kwarg_typing"
# uses torch.equal
"test_convert_observations"
]; ];
pythonImportsCheck = [ "ax" ]; pythonImportsCheck = [ "ax" ];