python312Packages.ax-platform: rename from ax

https://pypi.org/project/ax/ is a different package
This commit is contained in:
Robert Schütz
2024-07-29 12:25:49 -07:00
parent fb89aa5757
commit 41315b2d96
2 changed files with 5 additions and 5 deletions
@@ -2,7 +2,7 @@
lib,
buildPythonPackage,
fetchFromGitHub,
ax,
ax-platform,
botorch,
ipywidgets,
jinja2,
@@ -22,13 +22,13 @@
}:
buildPythonPackage rec {
pname = "ax";
pname = "ax-platform";
version = "0.4.0";
format = "pyproject";
src = fetchFromGitHub {
owner = "facebook";
repo = pname;
repo = "ax";
rev = "refs/tags/${version}";
hash = "sha256-dj6Gig8N4oLtcZLwPl4QDHG/FwA2nFBtYxSARnWiJJU=";
};
@@ -86,7 +86,7 @@ buildPythonPackage rec {
# Many portions of the test suite fail under Python 3.12
doCheck = lib.versions.majorMinor python.version != "3.12";
passthru.tests.check = ax.overridePythonAttrs { doCheck = true; };
passthru.tests.check = ax-platform.overridePythonAttrs { doCheck = true; };
meta = with lib; {
description = "Ax is an accessible, general-purpose platform for understanding, managing, deploying, and automating adaptive experiments";
+1 -1
View File
@@ -1088,7 +1088,7 @@ self: super: with self; {
awswrangler = callPackage ../development/python-modules/awswrangler { };
ax = callPackage ../development/python-modules/ax { };
ax-platform = callPackage ../development/python-modules/ax-platform { };
axis = callPackage ../development/python-modules/axis { };