Commit 5c7cc268 authored by Gaetan Lepage's avatar Gaetan Lepage
Browse files
parent 3c810023
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -30,14 +30,14 @@

buildPythonPackage (finalAttrs: {
  pname = "ax-platform";
  version = "1.2.3";
  version = "1.2.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "facebook";
    repo = "ax";
    tag = finalAttrs.version;
    hash = "sha256-zIK3D7QSkfzAxySumdxsA3tiPWYbP9E6SS21837H4ZY=";
    hash = "sha256-ZeYoLOPF2D1bk89V5/WO/v0UCtDisbAOOL/Su9sB2Fg=";
  };

  env.ALLOW_BOTORCH_LATEST = "1";
@@ -120,8 +120,8 @@ buildPythonPackage (finalAttrs: {
    # broken with sqlalchemy 2
    "test_sql_storage"
  ]
  ++ lib.optionals stdenv.hostPlatform.isDarwin [
    # flaky on x86
  ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [
    # flaky
    "test_gen_with_expanded_parameter_space"
  ];