Merge pull request #328732 from veprbl/pr/fix_ax

python312Packages.{ax,botorch}: relax version requirements
This commit is contained in:
Martin Weinelt
2024-07-26 22:59:17 +02:00
committed by GitHub
2 changed files with 10 additions and 4 deletions
@@ -49,6 +49,8 @@ buildPythonPackage rec {
pyre-extensions
];
env.ALLOW_BOTORCH_LATEST = "1";
checkInputs = [
hypothesis
mercurial
@@ -26,13 +26,13 @@ buildPythonPackage rec {
hash = "sha256-YX/G46U09y/VZuWZhKY8zU0Y+bf0NKumzSGYUWvrq/0=";
};
nativeBuildInputs = [
build-system = [
setuptools
setuptools-scm
wheel
];
propagatedBuildInputs = [
dependenciess = [
gpytorch
linear-operator
multipledispatch
@@ -41,9 +41,13 @@ buildPythonPackage rec {
torch
];
pythonRelaxDeps = [ "linear-operator" ];
pythonRelaxDeps = [
"gpytorch"
"linear-operator"
];
nativeCheckInputs = [ pytestCheckHook ];
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "botorch" ];
meta = with lib; {