lance-context 0.3.1__tar.gz → 0.3.2__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 (34) hide show
  1. {lance_context-0.3.1 → lance_context-0.3.2}/PKG-INFO +3 -2
  2. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-core/Cargo.toml +1 -1
  3. {lance_context-0.3.1 → lance_context-0.3.2}/pyproject.toml +2 -2
  4. {lance_context-0.3.1 → lance_context-0.3.2}/python/Cargo.toml +4 -1
  5. {lance_context-0.3.1 → lance_context-0.3.2}/python/uv.lock +6 -4
  6. {lance_context-0.3.1 → lance_context-0.3.2}/Cargo.toml +0 -0
  7. {lance_context-0.3.1 → lance_context-0.3.2}/LICENSE +0 -0
  8. {lance_context-0.3.1 → lance_context-0.3.2}/README.md +0 -0
  9. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-api/Cargo.toml +0 -0
  10. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-api/src/lib.rs +0 -0
  11. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-core/README.md +0 -0
  12. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-core/src/api_impl.rs +0 -0
  13. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-core/src/context.rs +0 -0
  14. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-core/src/lib.rs +0 -0
  15. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-core/src/record.rs +0 -0
  16. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-core/src/serde.rs +0 -0
  17. {lance_context-0.3.1 → lance_context-0.3.2}/crates/lance-context-core/src/store.rs +0 -0
  18. {lance_context-0.3.1 → lance_context-0.3.2}/python/Cargo.lock +0 -0
  19. {lance_context-0.3.1 → lance_context-0.3.2}/python/LICENSE +0 -0
  20. {lance_context-0.3.1 → lance_context-0.3.2}/python/README.md +0 -0
  21. {lance_context-0.3.1 → lance_context-0.3.2}/python/lance_context/__init__.py +0 -0
  22. {lance_context-0.3.1 → lance_context-0.3.2}/python/lance_context/api.py +0 -0
  23. {lance_context-0.3.1 → lance_context-0.3.2}/python/python/tests/test_context.py +0 -0
  24. {lance_context-0.3.1 → lance_context-0.3.2}/python/src/lib.rs +0 -0
  25. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_add_many.py +0 -0
  26. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_async.py +0 -0
  27. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_compaction.py +0 -0
  28. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_delete.py +0 -0
  29. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_external_id.py +0 -0
  30. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_gcs_persistence.py +0 -0
  31. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_id_index.py +0 -0
  32. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_persistence.py +0 -0
  33. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_search.py +0 -0
  34. {lance_context-0.3.1 → lance_context-0.3.2}/python/tests/test_storage_options.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: lance-context
3
- Version: 0.3.1
3
+ Version: 0.3.2
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Intended Audience :: Science/Research
6
6
  Classifier: License :: OSI Approved :: Apache Software License
@@ -17,9 +17,9 @@ Classifier: Topic :: Scientific/Engineering
17
17
  Requires-Dist: pylance==7.0.0
18
18
  Requires-Dist: lancedb==0.27.1
19
19
  Requires-Dist: lance-namespace==0.7.7
20
- Requires-Dist: lance-graph==0.5.4
21
20
  Requires-Dist: ruff ; extra == 'dev'
22
21
  Requires-Dist: pyright ; extra == 'dev'
22
+ Requires-Dist: lance-graph==0.5.4 ; extra == 'graph'
23
23
  Requires-Dist: pytest ; extra == 'tests'
24
24
  Requires-Dist: pytest-asyncio ; extra == 'tests'
25
25
  Requires-Dist: ruff ; extra == 'tests'
@@ -27,6 +27,7 @@ Requires-Dist: moto[s3,server] ; extra == 'tests'
27
27
  Requires-Dist: boto3 ; extra == 'tests'
28
28
  Requires-Dist: botocore ; extra == 'tests'
29
29
  Provides-Extra: dev
30
+ Provides-Extra: graph
30
31
  Provides-Extra: tests
31
32
  License-File: LICENSE
32
33
  Summary: Multimodal, versioned context storage for agentic workflows
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lance-context-core"
3
- version = "0.3.1"
3
+ version = "0.3.2"
4
4
  edition = "2021"
5
5
  license = "Apache-2.0"
6
6
  authors = ["Lance Devs <dev@lancedb.com>"]
@@ -1,11 +1,10 @@
1
1
  [project]
2
2
  name = "lance-context"
3
- version = "0.3.1"
3
+ version = "0.3.2"
4
4
  dependencies = [
5
5
  "pylance==7.0.0",
6
6
  "lancedb==0.27.1",
7
7
  "lance-namespace==0.7.7",
8
- "lance-graph==0.5.4",
9
8
  ]
10
9
  description = "Multimodal, versioned context storage for agentic workflows"
11
10
  authors = [{ name = "Lance Devs", email = "dev@lancedb.com" }]
@@ -42,6 +41,7 @@ requires = ["maturin>=1.4"]
42
41
  build-backend = "maturin"
43
42
 
44
43
  [project.optional-dependencies]
44
+ graph = ["lance-graph==0.5.4"]
45
45
  # `moto[server]` pulls in flask + flask-cors so moto.server can be launched
46
46
  # as a subprocess for the S3 integration tests.
47
47
  tests = ["pytest", "pytest-asyncio", "ruff", "moto[s3,server]", "boto3", "botocore"]
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "lance-context-python"
3
- version = "0.3.1"
3
+ version = "0.3.2"
4
4
  edition = "2021"
5
5
  authors = ["Lance Devs <dev@lancedb.com>"]
6
6
  publish = false
@@ -16,3 +16,6 @@ lance-context-core = { path = "../crates/lance-context-core" }
16
16
  pyo3 = { version = "0.25", features = ["extension-module", "abi3-py39", "py-clone"] }
17
17
  serde_json = "1"
18
18
  tokio = { version = "1", features = ["rt-multi-thread"] }
19
+
20
+ [target.'cfg(all(target_os = "linux", target_arch = "aarch64"))'.dependencies]
21
+ openssl = { version = "0.10", features = ["vendored"] }
@@ -1058,10 +1058,9 @@ wheels = [
1058
1058
 
1059
1059
  [[package]]
1060
1060
  name = "lance-context"
1061
- version = "0.2.4"
1061
+ version = "0.3.1"
1062
1062
  source = { editable = "." }
1063
1063
  dependencies = [
1064
- { name = "lance-graph" },
1065
1064
  { name = "lance-namespace" },
1066
1065
  { name = "lancedb" },
1067
1066
  { name = "pylance" },
@@ -1072,6 +1071,9 @@ dev = [
1072
1071
  { name = "pyright" },
1073
1072
  { name = "ruff" },
1074
1073
  ]
1074
+ graph = [
1075
+ { name = "lance-graph" },
1076
+ ]
1075
1077
  tests = [
1076
1078
  { name = "boto3" },
1077
1079
  { name = "botocore" },
@@ -1085,7 +1087,7 @@ tests = [
1085
1087
  requires-dist = [
1086
1088
  { name = "boto3", marker = "extra == 'tests'" },
1087
1089
  { name = "botocore", marker = "extra == 'tests'" },
1088
- { name = "lance-graph", specifier = "==0.5.4" },
1090
+ { name = "lance-graph", marker = "extra == 'graph'", specifier = "==0.5.4" },
1089
1091
  { name = "lance-namespace", specifier = "==0.7.7" },
1090
1092
  { name = "lancedb", specifier = "==0.27.1" },
1091
1093
  { name = "moto", extras = ["s3", "server"], marker = "extra == 'tests'" },
@@ -1096,7 +1098,7 @@ requires-dist = [
1096
1098
  { name = "ruff", marker = "extra == 'dev'" },
1097
1099
  { name = "ruff", marker = "extra == 'tests'" },
1098
1100
  ]
1099
- provides-extras = ["tests", "dev"]
1101
+ provides-extras = ["graph", "tests", "dev"]
1100
1102
 
1101
1103
  [[package]]
1102
1104
  name = "lance-graph"
File without changes
File without changes
File without changes