ragit 0.11.0__tar.gz → 0.11.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.
Files changed (27) hide show
  1. {ragit-0.11.0/ragit.egg-info → ragit-0.11.1}/PKG-INFO +2 -2
  2. {ragit-0.11.0 → ragit-0.11.1}/pyproject.toml +2 -2
  3. {ragit-0.11.0 → ragit-0.11.1}/ragit/version.py +1 -1
  4. {ragit-0.11.0 → ragit-0.11.1/ragit.egg-info}/PKG-INFO +2 -2
  5. {ragit-0.11.0 → ragit-0.11.1}/ragit.egg-info/requires.txt +1 -1
  6. {ragit-0.11.0 → ragit-0.11.1}/LICENSE +0 -0
  7. {ragit-0.11.0 → ragit-0.11.1}/README.md +0 -0
  8. {ragit-0.11.0 → ragit-0.11.1}/ragit/__init__.py +0 -0
  9. {ragit-0.11.0 → ragit-0.11.1}/ragit/assistant.py +0 -0
  10. {ragit-0.11.0 → ragit-0.11.1}/ragit/config.py +0 -0
  11. {ragit-0.11.0 → ragit-0.11.1}/ragit/core/__init__.py +0 -0
  12. {ragit-0.11.0 → ragit-0.11.1}/ragit/core/experiment/__init__.py +0 -0
  13. {ragit-0.11.0 → ragit-0.11.1}/ragit/core/experiment/experiment.py +0 -0
  14. {ragit-0.11.0 → ragit-0.11.1}/ragit/core/experiment/results.py +0 -0
  15. {ragit-0.11.0 → ragit-0.11.1}/ragit/exceptions.py +0 -0
  16. {ragit-0.11.0 → ragit-0.11.1}/ragit/loaders.py +0 -0
  17. {ragit-0.11.0 → ragit-0.11.1}/ragit/logging.py +0 -0
  18. {ragit-0.11.0 → ragit-0.11.1}/ragit/monitor.py +0 -0
  19. {ragit-0.11.0 → ragit-0.11.1}/ragit/providers/__init__.py +0 -0
  20. {ragit-0.11.0 → ragit-0.11.1}/ragit/providers/base.py +0 -0
  21. {ragit-0.11.0 → ragit-0.11.1}/ragit/providers/function_adapter.py +0 -0
  22. {ragit-0.11.0 → ragit-0.11.1}/ragit/providers/ollama.py +0 -0
  23. {ragit-0.11.0 → ragit-0.11.1}/ragit/utils/__init__.py +0 -0
  24. {ragit-0.11.0 → ragit-0.11.1}/ragit.egg-info/SOURCES.txt +0 -0
  25. {ragit-0.11.0 → ragit-0.11.1}/ragit.egg-info/dependency_links.txt +0 -0
  26. {ragit-0.11.0 → ragit-0.11.1}/ragit.egg-info/top_level.txt +0 -0
  27. {ragit-0.11.0 → ragit-0.11.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ragit
3
- Version: 0.11.0
3
+ Version: 0.11.1
4
4
  Summary: Automatic RAG Pattern Optimization Engine
5
5
  Author: RODMENA LIMITED
6
6
  Maintainer-email: RODMENA LIMITED <info@rodmena.co.uk>
@@ -20,7 +20,7 @@ Requires-Python: >=3.12
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  Requires-Dist: requests>=2.31.0
23
- Requires-Dist: numpy>=1.26.0
23
+ Requires-Dist: numpy==2.4.1
24
24
  Requires-Dist: pydantic>=2.0.0
25
25
  Requires-Dist: python-dotenv>=1.0.0
26
26
  Requires-Dist: tqdm>=4.66.0
@@ -32,7 +32,7 @@ license = "Apache-2.0"
32
32
  dynamic = ["version"]
33
33
  dependencies = [
34
34
  "requests>=2.31.0",
35
- "numpy>=1.26.0",
35
+ "numpy==2.4.1",
36
36
  "pydantic>=2.0.0",
37
37
  "python-dotenv>=1.0.0",
38
38
  "tqdm>=4.66.0",
@@ -77,7 +77,7 @@ python_classes = ["Test*"]
77
77
  python_functions = ["test_*"]
78
78
  log_cli = false
79
79
  log_level = "INFO"
80
- addopts = "-v --tb=short -m 'not integration'"
80
+ addopts = "-v --tb=short"
81
81
  markers = [
82
82
  "integration: marks tests as integration tests (may require external services)",
83
83
  ]
@@ -2,4 +2,4 @@
2
2
  # Copyright RODMENA LIMITED 2025
3
3
  # SPDX-License-Identifier: Apache-2.0
4
4
  #
5
- __version__ = "0.11.0"
5
+ __version__ = "0.11.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ragit
3
- Version: 0.11.0
3
+ Version: 0.11.1
4
4
  Summary: Automatic RAG Pattern Optimization Engine
5
5
  Author: RODMENA LIMITED
6
6
  Maintainer-email: RODMENA LIMITED <info@rodmena.co.uk>
@@ -20,7 +20,7 @@ Requires-Python: >=3.12
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  Requires-Dist: requests>=2.31.0
23
- Requires-Dist: numpy>=1.26.0
23
+ Requires-Dist: numpy==2.4.1
24
24
  Requires-Dist: pydantic>=2.0.0
25
25
  Requires-Dist: python-dotenv>=1.0.0
26
26
  Requires-Dist: tqdm>=4.66.0
@@ -1,5 +1,5 @@
1
1
  requests>=2.31.0
2
- numpy>=1.26.0
2
+ numpy==2.4.1
3
3
  pydantic>=2.0.0
4
4
  python-dotenv>=1.0.0
5
5
  tqdm>=4.66.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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes