python3Packages.ax-platform: 1.2.4 -> 1.3.1 (#537720)

This commit is contained in:
kirillrdy
2026-07-02 11:11:21 +00:00
committed by GitHub
2 changed files with 18 additions and 6 deletions
@@ -22,22 +22,26 @@
sympy,
# tests
jax,
numpyro,
pyfakefs,
pytestCheckHook,
sqlalchemy,
tabulate,
tensorboard,
}:
buildPythonPackage (finalAttrs: {
pname = "ax-platform";
version = "1.2.4";
version = "1.3.1";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "facebook";
repo = "ax";
tag = finalAttrs.version;
hash = "sha256-ZeYoLOPF2D1bk89V5/WO/v0UCtDisbAOOL/Su9sB2Fg=";
hash = "sha256-8Q/p74rzMAciNUjaTJtf6duslc3TXT7MIjcHt2sffqI=";
};
env.ALLOW_BOTORCH_LATEST = "1";
@@ -63,10 +67,13 @@ buildPythonPackage (finalAttrs: {
++ botorch.optional-dependencies.pymoo;
nativeCheckInputs = [
jax
numpyro
pyfakefs
pytestCheckHook
sqlalchemy
tabulate
tensorboard
];
disabledTestPaths = [
@@ -12,8 +12,8 @@
gpytorch,
linear-operator,
multipledispatch,
ninja,
pyre-extensions,
pyro-ppl,
scipy,
threadpoolctl,
torch,
@@ -23,20 +23,23 @@
pymoo,
# tests
jax,
numpyro,
pytestCheckHook,
pythonAtLeast,
}:
buildPythonPackage (finalAttrs: {
pname = "botorch";
version = "0.17.2";
version = "0.18.1";
pyproject = true;
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "meta-pytorch";
repo = "botorch";
tag = "v${finalAttrs.version}";
hash = "sha256-KWkRdgOAhWoVRoBn0XvKhTQX3KPHJrzqWoiaKrYzi7o=";
hash = "sha256-tUTtImqPlbS8g1oLoTTCCWQbeLwLop13qPjFrQeMtb8=";
};
build-system = [
@@ -48,8 +51,8 @@ buildPythonPackage (finalAttrs: {
gpytorch
linear-operator
multipledispatch
ninja
pyre-extensions
pyro-ppl
scipy
threadpoolctl
torch
@@ -63,6 +66,8 @@ buildPythonPackage (finalAttrs: {
};
nativeCheckInputs = [
jax
numpyro
pytestCheckHook
];