python-harness 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 (21) hide show
  1. {python_harness-0.0.1/python_harness.egg-info → python_harness-0.0.2}/PKG-INFO +2 -2
  2. {python_harness-0.0.1 → python_harness-0.0.2}/pyproject.toml +4 -4
  3. {python_harness-0.0.1 → python_harness-0.0.2/python_harness.egg-info}/PKG-INFO +2 -2
  4. {python_harness-0.0.1 → python_harness-0.0.2}/LICENSE +0 -0
  5. {python_harness-0.0.1 → python_harness-0.0.2}/README.md +0 -0
  6. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness/__init__.py +0 -0
  7. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness/cli.py +0 -0
  8. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness/evaluator.py +0 -0
  9. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness/hard_evaluator.py +0 -0
  10. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness/qc_evaluator.py +0 -0
  11. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness/soft_evaluator.py +0 -0
  12. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness.egg-info/SOURCES.txt +0 -0
  13. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness.egg-info/dependency_links.txt +0 -0
  14. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness.egg-info/entry_points.txt +0 -0
  15. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness.egg-info/requires.txt +0 -0
  16. {python_harness-0.0.1 → python_harness-0.0.2}/python_harness.egg-info/top_level.txt +0 -0
  17. {python_harness-0.0.1 → python_harness-0.0.2}/setup.cfg +0 -0
  18. {python_harness-0.0.1 → python_harness-0.0.2}/tests/test_cli.py +0 -0
  19. {python_harness-0.0.1 → python_harness-0.0.2}/tests/test_evaluator.py +0 -0
  20. {python_harness-0.0.1 → python_harness-0.0.2}/tests/test_hard_evaluator.py +0 -0
  21. {python_harness-0.0.1 → python_harness-0.0.2}/tests/test_soft_evaluator.py +0 -0
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-harness
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: An agentic codebase evaluation and evolution tool for Python projects.
5
5
  Author-email: Mingli Yuan <mingli.yuan@gmail.com>
6
6
  License: MIT
7
- Requires-Python: >=3.11
7
+ Requires-Python: >=3.10
8
8
  Description-Content-Type: text/markdown
9
9
  License-File: LICENSE
10
10
  Requires-Dist: typer>=0.9.0
@@ -1,8 +1,8 @@
1
1
  [project]
2
2
  name = "python-harness"
3
- version = "0.0.1"
3
+ version = "0.0.2"
4
4
  description = "An agentic codebase evaluation and evolution tool for Python projects."
5
- requires-python = ">=3.11"
5
+ requires-python = ">=3.10"
6
6
  readme = "README.md"
7
7
  authors = [
8
8
  {name = "Mingli Yuan", email = "mingli.yuan@gmail.com"}
@@ -41,14 +41,14 @@ harness = "python_harness.cli:app"
41
41
 
42
42
  [tool.ruff]
43
43
  line-length = 88
44
- target-version = "py311"
44
+ target-version = "py310"
45
45
 
46
46
  [tool.ruff.lint]
47
47
  select = ["E", "F", "I", "UP", "B", "SIM"]
48
48
  ignore = []
49
49
 
50
50
  [tool.mypy]
51
- python_version = "3.11"
51
+ python_version = "3.10"
52
52
  strict = true
53
53
  warn_return_any = true
54
54
  warn_unused_configs = true
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-harness
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: An agentic codebase evaluation and evolution tool for Python projects.
5
5
  Author-email: Mingli Yuan <mingli.yuan@gmail.com>
6
6
  License: MIT
7
- Requires-Python: >=3.11
7
+ Requires-Python: >=3.10
8
8
  Description-Content-Type: text/markdown
9
9
  License-File: LICENSE
10
10
  Requires-Dist: typer>=0.9.0
File without changes
File without changes
File without changes