dataframe-mutator 0.2.0__tar.gz → 0.2.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 (21) hide show
  1. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/PKG-INFO +1 -1
  2. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/dataframe_mutator.egg-info/PKG-INFO +1 -1
  3. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/pyproject.toml +1 -1
  4. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/LICENSE +0 -0
  5. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/README.md +0 -0
  6. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/dataframe_mutator.egg-info/SOURCES.txt +0 -0
  7. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/dataframe_mutator.egg-info/dependency_links.txt +0 -0
  8. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/dataframe_mutator.egg-info/entry_points.txt +0 -0
  9. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/dataframe_mutator.egg-info/requires.txt +0 -0
  10. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/dataframe_mutator.egg-info/top_level.txt +0 -0
  11. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/setup.cfg +0 -0
  12. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/src/dataframe_mutator/__init__.py +0 -0
  13. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/src/dataframe_mutator/cli.py +0 -0
  14. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/src/dataframe_mutator/config.py +0 -0
  15. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/src/dataframe_mutator/integrations.py +0 -0
  16. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/src/dataframe_mutator/pytest_plugin.py +0 -0
  17. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/src/dataframe_mutator/reports.py +0 -0
  18. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/tests/test_advanced_features.py +0 -0
  19. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/tests/test_polars_100_coverage.py +0 -0
  20. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/tests/test_polars_new_operators.py +0 -0
  21. {dataframe_mutator-0.2.0 → dataframe_mutator-0.2.1}/tests/test_polars_operators.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataframe-mutator
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Production-grade mutation testing for Polars dataframes. Validate test suite quality by detecting which mutations your tests catch.
5
5
  Author-email: Dataframe Mutator Contributors <suhrusai@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dataframe-mutator
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: Production-grade mutation testing for Polars dataframes. Validate test suite quality by detecting which mutations your tests catch.
5
5
  Author-email: Dataframe Mutator Contributors <suhrusai@gmail.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "dataframe-mutator"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "Production-grade mutation testing for Polars dataframes. Validate test suite quality by detecting which mutations your tests catch."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"