Unverified Commit 31ab43f3 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

python312Packages.sparsezoo: fix by relaxing numpy (#393245)

parents b10ffdd7 8cf02049
Loading
Loading
Loading
Loading
+10 −7
Original line number Diff line number Diff line
@@ -11,13 +11,13 @@
  geocoder,
  numpy,
  onnx,
  pyyaml,
  requests,
  tqdm,
  pandas,
  protobuf,
  py-machineid,
  pydantic,
  pyyaml,
  requests,
  tqdm,

  # checks
  matplotlib,
@@ -38,20 +38,23 @@ buildPythonPackage rec {

  build-system = [ setuptools ];

  pythonRelaxDeps = [ "onnx" ];
  pythonRelaxDeps = [
    "numpy"
    "onnx"
  ];

  dependencies = [
    click
    geocoder
    numpy
    onnx
    pyyaml
    requests
    tqdm
    pandas
    protobuf
    py-machineid
    pydantic
    pyyaml
    requests
    tqdm
  ];

  pythonImportsCheck = [ "sparsezoo" ];