wavemind 2.0.3__tar.gz → 2.0.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.
Files changed (34) hide show
  1. {wavemind-2.0.3/wavemind.egg-info → wavemind-2.0.4}/PKG-INFO +1 -1
  2. {wavemind-2.0.3 → wavemind-2.0.4}/pyproject.toml +1 -1
  3. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_packaging_files.py +5 -3
  4. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/__init__.py +1 -1
  5. {wavemind-2.0.3 → wavemind-2.0.4/wavemind.egg-info}/PKG-INFO +1 -1
  6. {wavemind-2.0.3 → wavemind-2.0.4}/LICENSE +0 -0
  7. {wavemind-2.0.3 → wavemind-2.0.4}/README.md +0 -0
  8. {wavemind-2.0.3 → wavemind-2.0.4}/setup.cfg +0 -0
  9. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_agent_memory_benchmark.py +0 -0
  10. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_api.py +0 -0
  11. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_api_process_persistence.py +0 -0
  12. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_cli_smoke.py +0 -0
  13. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_core_persistence.py +0 -0
  14. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_examples.py +0 -0
  15. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_import_benchmark.py +0 -0
  16. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_indexes_encoders.py +0 -0
  17. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_langchain_integration.py +0 -0
  18. {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_semantic_and_latency.py +0 -0
  19. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/__main__.py +0 -0
  20. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/api.py +0 -0
  21. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/benchmark.py +0 -0
  22. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/cli.py +0 -0
  23. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/core.py +0 -0
  24. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/encoders.py +0 -0
  25. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/importers.py +0 -0
  26. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/indexes.py +0 -0
  27. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/integrations/__init__.py +0 -0
  28. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/integrations/langchain.py +0 -0
  29. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/storage.py +0 -0
  30. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/SOURCES.txt +0 -0
  31. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/dependency_links.txt +0 -0
  32. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/entry_points.txt +0 -0
  33. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/requires.txt +0 -0
  34. {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wavemind
3
- Version: 2.0.3
3
+ Version: 2.0.4
4
4
  Summary: Persistent dynamic memory engine with vector search and wave-field re-ranking
5
5
  License-Expression: MIT
6
6
  Project-URL: Homepage, https://github.com/CaspianG/wavemind
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "wavemind"
7
- version = "2.0.3"
7
+ version = "2.0.4"
8
8
  description = "Persistent dynamic memory engine with vector search and wave-field re-ranking"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,13 +1,15 @@
1
1
  from pathlib import Path
2
- import tomllib
2
+ import re
3
3
 
4
4
  import wavemind
5
5
 
6
6
 
7
7
  def test_package_version_matches_pyproject():
8
- pyproject = tomllib.loads(Path("pyproject.toml").read_text(encoding="utf-8"))
8
+ pyproject = Path("pyproject.toml").read_text(encoding="utf-8")
9
+ match = re.search(r'^version = "([^"]+)"$', pyproject, flags=re.MULTILINE)
9
10
 
10
- assert wavemind.__version__ == pyproject["project"]["version"]
11
+ assert match is not None
12
+ assert wavemind.__version__ == match.group(1)
11
13
 
12
14
 
13
15
  def test_sentence_extra_is_available_for_install_scripts():
@@ -8,7 +8,7 @@ from .encoders import (
8
8
  )
9
9
  from .storage import MemoryRecord, SQLiteMemoryStore
10
10
 
11
- __version__ = "2.0.3"
11
+ __version__ = "2.0.4"
12
12
 
13
13
  __all__ = [
14
14
  "FieldProjector",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: wavemind
3
- Version: 2.0.3
3
+ Version: 2.0.4
4
4
  Summary: Persistent dynamic memory engine with vector search and wave-field re-ranking
5
5
  License-Expression: MIT
6
6
  Project-URL: Homepage, https://github.com/CaspianG/wavemind
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