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.
- {wavemind-2.0.3/wavemind.egg-info → wavemind-2.0.4}/PKG-INFO +1 -1
- {wavemind-2.0.3 → wavemind-2.0.4}/pyproject.toml +1 -1
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_packaging_files.py +5 -3
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/__init__.py +1 -1
- {wavemind-2.0.3 → wavemind-2.0.4/wavemind.egg-info}/PKG-INFO +1 -1
- {wavemind-2.0.3 → wavemind-2.0.4}/LICENSE +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/README.md +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/setup.cfg +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_agent_memory_benchmark.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_api.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_api_process_persistence.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_cli_smoke.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_core_persistence.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_examples.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_import_benchmark.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_indexes_encoders.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_langchain_integration.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/tests/test_semantic_and_latency.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/__main__.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/api.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/benchmark.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/cli.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/core.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/encoders.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/importers.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/indexes.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/integrations/__init__.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/integrations/langchain.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind/storage.py +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/SOURCES.txt +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/dependency_links.txt +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/entry_points.txt +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/requires.txt +0 -0
- {wavemind-2.0.3 → wavemind-2.0.4}/wavemind.egg-info/top_level.txt +0 -0
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
from pathlib import Path
|
|
2
|
-
import
|
|
2
|
+
import re
|
|
3
3
|
|
|
4
4
|
import wavemind
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
def test_package_version_matches_pyproject():
|
|
8
|
-
pyproject =
|
|
8
|
+
pyproject = Path("pyproject.toml").read_text(encoding="utf-8")
|
|
9
|
+
match = re.search(r'^version = "([^"]+)"$', pyproject, flags=re.MULTILINE)
|
|
9
10
|
|
|
10
|
-
assert
|
|
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():
|
|
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
|
|
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
|
|
File without changes
|