indexify 0.3.6__tar.gz → 0.3.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. {indexify-0.3.6 → indexify-0.3.7}/PKG-INFO +2 -2
  2. {indexify-0.3.6 → indexify-0.3.7}/pyproject.toml +2 -2
  3. {indexify-0.3.6 → indexify-0.3.7}/README.md +0 -0
  4. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/cli/cli.py +0 -0
  5. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/README.md +0 -0
  6. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/api_objects.py +0 -0
  7. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/downloader.py +0 -0
  8. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/executor.py +0 -0
  9. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/function_executor.py +0 -0
  10. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/function_executor_state.py +0 -0
  11. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/health_checker.py +0 -0
  12. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/invocation_state_client.py +0 -0
  13. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/server/client_configuration.py +0 -0
  14. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/server/function_executor_server.py +0 -0
  15. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/server/function_executor_server_factory.py +0 -0
  16. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/server/subprocess_function_executor_server.py +0 -0
  17. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/server/subprocess_function_executor_server_factory.py +0 -0
  18. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/single_task_runner.py +0 -0
  19. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/task_input.py +0 -0
  20. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/function_executor/task_output.py +0 -0
  21. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/runtime_probes.py +0 -0
  22. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/task_fetcher.py +0 -0
  23. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/task_reporter.py +0 -0
  24. {indexify-0.3.6 → indexify-0.3.7}/src/indexify/executor/task_runner.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: indexify
3
- Version: 0.3.6
3
+ Version: 0.3.7
4
4
  Summary: Open Source Indexify components and helper tools
5
5
  Home-page: https://github.com/tensorlakeai/indexify
6
6
  License: Apache 2.0
@@ -22,7 +22,7 @@ Requires-Dist: pydantic (==2.10.4)
22
22
  Requires-Dist: pyyaml (>=6,<7)
23
23
  Requires-Dist: rich (>=13.9.2,<14.0.0)
24
24
  Requires-Dist: structlog (>=24.4.0,<25.0.0)
25
- Requires-Dist: tensorlake (>=0.1.13)
25
+ Requires-Dist: tensorlake (>=0.1.14)
26
26
  Requires-Dist: typer (>=0.12,<0.13)
27
27
  Project-URL: Repository, https://github.com/tensorlakeai/indexify
28
28
  Description-Content-Type: text/markdown
@@ -1,7 +1,7 @@
1
1
  [tool.poetry]
2
2
  name = "indexify"
3
3
  # Incremented if any of the components provided in this packages are updated.
4
- version = "0.3.6"
4
+ version = "0.3.7"
5
5
  description = "Open Source Indexify components and helper tools"
6
6
  authors = ["Tensorlake Inc. <support@tensorlake.ai>"]
7
7
  license = "Apache 2.0"
@@ -24,7 +24,7 @@ grpcio = "1.70.0"
24
24
  pydantic = "2.10.4"
25
25
  httpx-sse = "^0.4.0"
26
26
  # Adds function-executor binary and utils lib.
27
- tensorlake = ">=0.1.13"
27
+ tensorlake = ">=0.1.14"
28
28
 
29
29
  # CLI only
30
30
  rich = "^13.9.2"
File without changes