Skip to content

Commit

Permalink
python312Packages.ax-platform: 0.4.3 -> 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mweinelt committed Feb 8, 2025
1 parent 712b73c commit 5a64250
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pkgs/development/python-modules/ax-platform/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@
setuptools-scm,
setuptools,
sqlalchemy,
tabulate,
typeguard,
yappi,
}:

buildPythonPackage rec {
pname = "ax-platform";
version = "0.4.3";
version = "0.5.0";
pyproject = true;

disabled = pythonOlder "3.10";
Expand All @@ -32,7 +33,7 @@ buildPythonPackage rec {
owner = "facebook";
repo = "ax";
tag = version;
hash = "sha256-jmBjrtxqg4Iu3Qr0HRqjVfwURXzbJaGm+DBFNHYk/vA=";
hash = "sha256-CMKdnPvzQ9tvU9/01mRaWi/Beuyo19CtaXNJCoiwLOw=";
};

env.ALLOW_BOTORCH_LATEST = "1";
Expand Down Expand Up @@ -62,16 +63,13 @@ buildPythonPackage rec {
mercurial
pyfakefs
pytestCheckHook
tabulate
yappi
] ++ lib.flatten (builtins.attrValues optional-dependencies);
] ++ lib.flatten (lib.attrValues optional-dependencies);

disabledTestPaths = [
"ax/benchmark"
"ax/runners/tests/test_torchx.py"
# requires pyre_extensions
"ax/telemetry/tests"
"ax/core/tests/test_utils.py"
"ax/early_stopping/tests/test_strategies.py"
# broken with sqlalchemy 2
"ax/core/tests/test_experiment.py"
"ax/service/tests/test_ax_client.py"
Expand All @@ -89,6 +87,8 @@ buildPythonPackage rec {
"test_validate_kwarg_typing"
# uses torch.equal
"test_convert_observations"
# broken with sqlalchemy 2
"test_sql_storage"
];

pythonImportsCheck = [ "ax" ];
Expand Down

0 comments on commit 5a64250

Please sign in to comment.