Unverified Commit 1d3df174 authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python3Packages.llama-index-vector-stores-milvus: 0.9.5 -> 0.9.6 (#480737)

parents c0c87b60 d7001962
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -7,15 +7,15 @@
  pymilvus,
}:

buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
  pname = "llama-index-vector-stores-milvus";
  version = "0.9.5";
  version = "0.9.6";
  pyproject = true;

  src = fetchPypi {
    pname = "llama_index_vector_stores_milvus";
    inherit version;
    hash = "sha256-c44M+k0OL2cKAlI4OZI5f/sf/kF0Cg8o2CxoBUbZMdg=";
    inherit (finalAttrs) version;
    hash = "sha256-bTisWTmlcOAkBof1T77k4f9sX6otKNJTd6PzjSygfis=";
  };

  build-system = [ hatchling ];
@@ -36,4 +36,4 @@ buildPythonPackage rec {
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ fab ];
  };
}
})