llm-join 0.2.3__tar.gz → 0.2.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: llm-join
3
- Version: 0.2.3
3
+ Version: 0.2.4
4
4
  Summary: Fuzzy join DataFrames using LLM scoring and embedding retrieval
5
5
  License: MIT
6
6
  Keywords: entity-resolution,fuzzy-join,llm,nlp,pandas
@@ -0,0 +1,17 @@
1
+ try:
2
+ import numpy as np
3
+ import faiss # noqa: F401
4
+ except ImportError as e:
5
+ if "numpy._core" in str(e) or "numpy.core" in str(e):
6
+ raise ImportError(
7
+ "llm-join: numpy/faiss version mismatch detected.\n\n"
8
+ "Fix with:\n"
9
+ " pip install 'faiss-cpu>=1.8' --force-reinstall\n\n"
10
+ f"Original error: {e}"
11
+ ) from None
12
+ raise
13
+
14
+ from llm_join.join import fuzzy_join
15
+
16
+ __all__ = ["fuzzy_join"]
17
+ __version__ = "0.2.4"
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "llm-join"
7
- version = "0.2.3"
7
+ version = "0.2.4"
8
8
  description = "Fuzzy join DataFrames using LLM scoring and embedding retrieval"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.9"
@@ -1,4 +0,0 @@
1
- from llm_join.join import fuzzy_join
2
-
3
- __all__ = ["fuzzy_join"]
4
- __version__ = "0.1.0"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes