knowledge-rag 3.5.0__tar.gz → 3.5.1__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: knowledge-rag
3
- Version: 3.5.0
3
+ Version: 3.5.1
4
4
  Summary: Local RAG System for Claude Code — Hybrid search + Cross-encoder Reranking + 12 MCP Tools. Zero external servers.
5
5
  Project-URL: Homepage, https://github.com/lyonzin/knowledge-rag
6
6
  Project-URL: Repository, https://github.com/lyonzin/knowledge-rag
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.11
19
19
  Classifier: Programming Language :: Python :: 3.12
20
20
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
21
21
  Classifier: Topic :: Text Processing :: Indexing
22
- Requires-Python: <3.13,>=3.11
22
+ Requires-Python: >=3.11
23
23
  Requires-Dist: beautifulsoup4>=4.12.0
24
24
  Requires-Dist: chromadb>=1.4.0
25
25
  Requires-Dist: fastembed[reranking]>=0.4.0
@@ -40,8 +40,8 @@ Description-Content-Type: text/markdown
40
40
 
41
41
  <div align="center">
42
42
 
43
- ![Version](https://img.shields.io/badge/version-3.5.0-blue.svg)
44
- ![Python](https://img.shields.io/badge/python-3.11%20%7C%203.12-green.svg)
43
+ ![Version](https://img.shields.io/badge/version-3.5.1-blue.svg)
44
+ ![Python](https://img.shields.io/badge/python-3.11%2B-green.svg)
45
45
  ![License](https://img.shields.io/badge/license-MIT-yellow.svg)
46
46
  ![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20Linux%20%7C%20macOS-lightgrey.svg)
47
47
  [![CI](https://github.com/lyonzin/knowledge-rag/actions/workflows/ci.yml/badge.svg)](https://github.com/lyonzin/knowledge-rag/actions/workflows/ci.yml)
@@ -319,7 +319,7 @@ flowchart LR
319
319
 
320
320
  ### Prerequisites
321
321
 
322
- - Python 3.11 or 3.12 (**NOT** 3.13+ — onnxruntime incompatibility)
322
+ - Python 3.11+
323
323
  - Claude Code CLI
324
324
  - ~200MB disk for model cache (auto-downloaded on first run)
325
325
  - *Optional:* NVIDIA GPU + CUDA for [accelerated embeddings](#gpu-accelerated-embeddings-optional) (`pip install knowledge-rag[gpu]`)
@@ -950,17 +950,10 @@ knowledge-rag/
950
950
 
951
951
  ### Python version mismatch
952
952
 
953
- ChromaDB depends on onnxruntime which requires Python 3.11 or 3.12. Python 3.13+ is **NOT** supported.
953
+ Requires Python 3.11 or newer.
954
954
 
955
955
  ```bash
956
- # Check version
957
- python --version
958
-
959
- # Windows: use specific version
960
- py -3.12 -m venv venv
961
-
962
- # Linux/macOS: use specific version
963
- python3.12 -m venv venv
956
+ python --version # Must be 3.11+
964
957
  ```
965
958
 
966
959
  ### FastEmbed model download fails
@@ -1018,6 +1011,10 @@ With ~200 documents, expect ~300-500MB RAM. The embedding model (~50MB) and rera
1018
1011
 
1019
1012
  ## Changelog
1020
1013
 
1014
+ ### v3.5.1 (2026-04-16)
1015
+
1016
+ - **FIX**: Removed Python upper bound constraint (`<3.13` → `>=3.11`). Python 3.13 and 3.14 now supported — onnxruntime ships wheels for both.
1017
+
1021
1018
  ### v3.5.0 (2026-04-16)
1022
1019
 
1023
1020
  - **NEW**: Optional GPU acceleration for ONNX embeddings — `pip install knowledge-rag[gpu]` + `models.embedding.gpu: true` in config. 5-10x faster indexing on NVIDIA GPUs with automatic CPU fallback.
@@ -2,8 +2,8 @@
2
2
 
3
3
  <div align="center">
4
4
 
5
- ![Version](https://img.shields.io/badge/version-3.5.0-blue.svg)
6
- ![Python](https://img.shields.io/badge/python-3.11%20%7C%203.12-green.svg)
5
+ ![Version](https://img.shields.io/badge/version-3.5.1-blue.svg)
6
+ ![Python](https://img.shields.io/badge/python-3.11%2B-green.svg)
7
7
  ![License](https://img.shields.io/badge/license-MIT-yellow.svg)
8
8
  ![Platform](https://img.shields.io/badge/platform-Windows%20%7C%20Linux%20%7C%20macOS-lightgrey.svg)
9
9
  [![CI](https://github.com/lyonzin/knowledge-rag/actions/workflows/ci.yml/badge.svg)](https://github.com/lyonzin/knowledge-rag/actions/workflows/ci.yml)
@@ -281,7 +281,7 @@ flowchart LR
281
281
 
282
282
  ### Prerequisites
283
283
 
284
- - Python 3.11 or 3.12 (**NOT** 3.13+ — onnxruntime incompatibility)
284
+ - Python 3.11+
285
285
  - Claude Code CLI
286
286
  - ~200MB disk for model cache (auto-downloaded on first run)
287
287
  - *Optional:* NVIDIA GPU + CUDA for [accelerated embeddings](#gpu-accelerated-embeddings-optional) (`pip install knowledge-rag[gpu]`)
@@ -912,17 +912,10 @@ knowledge-rag/
912
912
 
913
913
  ### Python version mismatch
914
914
 
915
- ChromaDB depends on onnxruntime which requires Python 3.11 or 3.12. Python 3.13+ is **NOT** supported.
915
+ Requires Python 3.11 or newer.
916
916
 
917
917
  ```bash
918
- # Check version
919
- python --version
920
-
921
- # Windows: use specific version
922
- py -3.12 -m venv venv
923
-
924
- # Linux/macOS: use specific version
925
- python3.12 -m venv venv
918
+ python --version # Must be 3.11+
926
919
  ```
927
920
 
928
921
  ### FastEmbed model download fails
@@ -980,6 +973,10 @@ With ~200 documents, expect ~300-500MB RAM. The embedding model (~50MB) and rera
980
973
 
981
974
  ## Changelog
982
975
 
976
+ ### v3.5.1 (2026-04-16)
977
+
978
+ - **FIX**: Removed Python upper bound constraint (`<3.13` → `>=3.11`). Python 3.13 and 3.14 now supported — onnxruntime ships wheels for both.
979
+
983
980
  ### v3.5.0 (2026-04-16)
984
981
 
985
982
  - **NEW**: Optional GPU acceleration for ONNX embeddings — `pip install knowledge-rag[gpu]` + `models.embedding.gpu: true` in config. 5-10x faster indexing on NVIDIA GPUs with automatic CPU fallback.
@@ -8,7 +8,7 @@ import sys # noqa: I001
8
8
  _original_stdout = sys.stdout
9
9
  sys.stdout = sys.stderr
10
10
 
11
- __version__ = "3.5.0"
11
+ __version__ = "3.5.1"
12
12
  __author__ = "Ailton Rocha (Lyon.)"
13
13
 
14
14
  from .config import Config # noqa: E402
@@ -19,7 +19,7 @@ Features:
19
19
  - CRUD operations via MCP tools (add, update, remove docs)
20
20
 
21
21
  Autor: Lyon (Ailton Rocha)
22
- Versao: 3.5.0
22
+ Versao: 3.5.1
23
23
  Data: 2026-04-16
24
24
  """
25
25
 
@@ -4,11 +4,11 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "knowledge-rag"
7
- version = "3.5.0"
7
+ version = "3.5.1"
8
8
  description = "Local RAG System for Claude Code — Hybrid search + Cross-encoder Reranking + 12 MCP Tools. Zero external servers."
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
11
- requires-python = ">=3.11,<3.13"
11
+ requires-python = ">=3.11"
12
12
  authors = [
13
13
  {name = "Lyon.", email = "lyonzin@users.noreply.github.com"},
14
14
  ]
File without changes
File without changes