pytest-grounding 0.0.1__tar.gz → 0.0.2__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. {pytest_grounding-0.0.1/pytest_grounding.egg-info → pytest_grounding-0.0.2}/PKG-INFO +1 -1
  2. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/__init__.py +1 -1
  3. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/pyproject.toml +1 -1
  4. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2/pytest_grounding.egg-info}/PKG-INFO +1 -1
  5. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/LICENSE +0 -0
  6. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/README.md +0 -0
  7. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/_capture.py +0 -0
  8. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/_normalize.py +0 -0
  9. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/_text.py +0 -0
  10. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/claim.py +0 -0
  11. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/cli.py +0 -0
  12. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/guard.py +0 -0
  13. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/loaders.py +0 -0
  14. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/plugin.py +0 -0
  15. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/report_io.py +0 -0
  16. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/grounding/trace.py +0 -0
  17. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/pytest_grounding.egg-info/SOURCES.txt +0 -0
  18. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/pytest_grounding.egg-info/dependency_links.txt +0 -0
  19. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/pytest_grounding.egg-info/entry_points.txt +0 -0
  20. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/pytest_grounding.egg-info/requires.txt +0 -0
  21. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/pytest_grounding.egg-info/top_level.txt +0 -0
  22. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/setup.cfg +0 -0
  23. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/tests/test_capture.py +0 -0
  24. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/tests/test_loaders.py +0 -0
  25. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/tests/test_plugin.py +0 -0
  26. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/tests/test_text.py +0 -0
  27. {pytest_grounding-0.0.1 → pytest_grounding-0.0.2}/tests/test_trace.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-grounding
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Turn assertions about data into re-runnable, provenance-tracked claims — written and reviewed by agents.
5
5
  Author-email: Sam Quigley <quigley@emerose.com>
6
6
  License: MIT
@@ -61,4 +61,4 @@ __all__ = [
61
61
  "install_guard",
62
62
  ]
63
63
 
64
- __version__ = "0.0.1"
64
+ __version__ = "0.0.2"
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
7
7
  # makes it discoverable); the import package stays `grounding` (the friendly-import pattern
8
8
  # used by pytest-mock / pytest-django): pip install pytest-grounding, from grounding import …
9
9
  name = "pytest-grounding"
10
- version = "0.0.1"
10
+ version = "0.0.2"
11
11
  description = "Turn assertions about data into re-runnable, provenance-tracked claims — written and reviewed by agents."
12
12
  readme = "README.md"
13
13
  requires-python = ">=3.9"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pytest-grounding
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: Turn assertions about data into re-runnable, provenance-tracked claims — written and reviewed by agents.
5
5
  Author-email: Sam Quigley <quigley@emerose.com>
6
6
  License: MIT