Unverified Commit 6d90e72a authored by Fabian Affolter's avatar Fabian Affolter Committed by GitHub
Browse files

python312Packages.llama-index-core: 0.11.16 -> 0.11.20 (#352714)

parents 10b6280a e0dea9c9
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@

buildPythonPackage rec {
  pname = "chromadb";
  version = "0.5.11";
  version = "0.5.17";
  pyproject = true;

  disabled = pythonOlder "3.9";
@@ -61,13 +61,13 @@ buildPythonPackage rec {
    owner = "chroma-core";
    repo = "chroma";
    rev = "refs/tags/${version}";
    hash = "sha256-qE8eX97khcQa2JS9ZuJ1j3/pduXcQGyuVyvsnvKaemo=";
    hash = "sha256-ui4wUV9jIvgPtnY5L8mHg9k3l3ccL4u1rir426wwuMg=";
  };

  cargoDeps = rustPlatform.fetchCargoTarball {
    inherit src;
    name = "${pname}-${version}";
    hash = "sha256-zciqOK5EkvxX3ctkGdkAppOQAW4CJ554PZsw2ctrdG0=";
    hash = "sha256-lF+TpoQF6vZoxjPX3CN6TnWiY72qoxrVu2hilWgNx2E=";
  };

  pythonRelaxDeps = [
@@ -149,6 +149,8 @@ buildPythonPackage rec {
    # Tests are laky / timing sensitive
    "test_fastapi_server_token_authn_allows_when_it_should_allow"
    "test_fastapi_server_token_authn_rejects_when_it_should_reject"
    # Issue with event loop
    "test_http_client_bw_compatibility"
  ];

  disabledTestPaths = [
+2 −2
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

buildPythonPackage rec {
  pname = "llama-cloud";
  version = "0.1.2";
  version = "0.1.4";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "llama_cloud";
    inherit version;
    hash = "sha256-fIB0fpp/MtS3OcLV1K3XNR+DbZLmM9asA/pAGJbTMJc=";
    hash = "sha256-bwFVl5vZYWCVHLgSxIg28frOA3vHnM/Y0YWxjvTJ+vg=";
  };

  build-system = [ poetry-core ];
+6 −2
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@

buildPythonPackage rec {
  pname = "llama-index-core";
  version = "0.11.16";
  version = "0.11.20";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -44,7 +44,7 @@ buildPythonPackage rec {
    owner = "run-llama";
    repo = "llama_index";
    rev = "refs/tags/v${version}";
    hash = "sha256-t4hQMlORpdWXkbKQhVSxD/pdxFtu+sJ4FQQxIXLoH94=";
    hash = "sha256-r4xedtxoYv6CcxtDrgwau9LY3kOBg3jXlQm1g59L7x4=";
  };

  sourceRoot = "${src.name}/${pname}";
@@ -63,6 +63,8 @@ buildPythonPackage rec {
    cp -r ${nltk-data.punkt}/tokenizers/punkt/* llama_index/core/_static/nltk_cache/tokenizers/punkt/
  '';

  pythonRelaxDeps = [ "tenacity" ];

  build-system = [ poetry-core ];

  dependencies = [
@@ -127,6 +129,8 @@ buildPythonPackage rec {
    # Tests require network access
    "test_from_namespaced_persist_dir"
    "test_from_persist_dir"
    # asyncio.exceptions.InvalidStateError: invalid state
    "test_workflow_context_to_dict_mid_run"
  ];

  meta = with lib; {
+2 −2
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@

buildPythonPackage rec {
  pname = "llama-index-graph-stores-neo4j";
  version = "0.3.2";
  version = "0.3.5";
  pyproject = true;

  disabled = pythonOlder "3.8";
@@ -18,7 +18,7 @@ buildPythonPackage rec {
  src = fetchPypi {
    pname = "llama_index_graph_stores_neo4j";
    inherit version;
    hash = "sha256-O/iTlpbREmN1tbojbaqZ7gLAN2JdKmKEzhKCnpth6S0=";
    hash = "sha256-r3/bxG4EZmeJ5fa4mmE2OTlbvGN780rsze5HoKQssiY=";
  };

  build-system = [ poetry-core ];
+2 −0
Original line number Diff line number Diff line
@@ -20,6 +20,8 @@ buildPythonPackage rec {
    hash = "sha256-9pafEIXvsKvr1jZ+RvNRICDz9rnAhvRYpRmDDdYeggY=";
  };

  pythonRelaxDeps = [ "tenacity" ];

  build-system = [ poetry-core ];

  dependencies = [ llama-index-core ];
Loading