Unverified Commit 1152c8ce authored by Dmitry Kalinkin's avatar Dmitry Kalinkin Committed by GitHub
Browse files

Merge pull request #330924 from dotlambda/python3Packages.ax-platform

python312Packages.ax-platform: rename from ax
parents 80ab7160 b88ea493
Loading
Loading
Loading
Loading
+9 −17
Original line number Diff line number Diff line
@@ -2,17 +2,14 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  ax,
  botorch,
  ipywidgets,
  jinja2,
  pandas,
  plotly,
  python,
  setuptools,
  setuptools-scm,
  typeguard,
  wheel,
  hypothesis,
  mercurial,
  pyfakefs,
@@ -22,24 +19,23 @@
}:

buildPythonPackage rec {
  pname = "ax";
  version = "0.4.0";
  format = "pyproject";
  pname = "ax-platform";
  version = "0.4.1";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "facebook";
    repo = pname;
    repo = "ax";
    rev = "refs/tags/${version}";
    hash = "sha256-dj6Gig8N4oLtcZLwPl4QDHG/FwA2nFBtYxSARnWiJJU=";
    hash = "sha256-ygMMMKY5XsoQGp9yUMFAQqkSUlXNBJCb8xgGE10db4U=";
  };

  nativeBuildInputs = [
  build-system = [
    setuptools
    setuptools-scm
    wheel
  ];

  propagatedBuildInputs = [
  dependencies = [
    botorch
    ipywidgets
    jinja2
@@ -51,7 +47,7 @@ buildPythonPackage rec {

  env.ALLOW_BOTORCH_LATEST = "1";

  checkInputs = [
  nativeCheckInputs = [
    hypothesis
    mercurial
    pyfakefs
@@ -83,12 +79,8 @@ buildPythonPackage rec {
  ];
  pythonImportsCheck = [ "ax" ];

  # 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; };

  meta = with lib; {
    changelog = "https://github.com/facebook/Ax/releases/tag/${version}";
    description = "Ax is an accessible, general-purpose platform for understanding, managing, deploying, and automating adaptive experiments";
    homepage = "https://ax.dev/";
    license = licenses.mit;
+7 −6
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@
  pyro-ppl,
  setuptools,
  setuptools-scm,
  wheel,
  torch,
  scipy,
  pytestCheckHook,
@@ -16,20 +15,19 @@

buildPythonPackage rec {
  pname = "botorch";
  version = "0.11.1";
  format = "pyproject";
  version = "0.11.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "pytorch";
    repo = pname;
    repo = "botorch";
    rev = "refs/tags/v${version}";
    hash = "sha256-YX/G46U09y/VZuWZhKY8zU0Y+bf0NKumzSGYUWvrq/0=";
    hash = "sha256-AtRU5KC8KlkxMCU0OUAHDFK7BsPO3TbRmmzDGV7+yVk=";
  };

  build-system = [
    setuptools
    setuptools-scm
    wheel
  ];

  dependencies = [
@@ -48,9 +46,12 @@ buildPythonPackage rec {

  nativeCheckInputs = [ pytestCheckHook ];

  disabledTests = [ "test_all_cases_covered" ];

  pythonImportsCheck = [ "botorch" ];

  meta = with lib; {
    changelog = "https://github.com/pytorch/botorch/blob/${src.rev}/CHANGELOG.md";
    description = "Bayesian Optimization in PyTorch";
    homepage = "https://botorch.org";
    license = licenses.mit;
+1 −1
Original line number Diff line number Diff line
@@ -1090,7 +1090,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 { };