pyrefactor 1.0.1__tar.gz → 1.0.3__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 (49) hide show
  1. {pyrefactor-1.0.1/src/pyrefactor.egg-info → pyrefactor-1.0.3}/PKG-INFO +2 -2
  2. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/README.md +1 -1
  3. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/__init__.py +1 -1
  4. {pyrefactor-1.0.1 → pyrefactor-1.0.3/src/pyrefactor.egg-info}/PKG-INFO +2 -2
  5. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/LICENSE.md +0 -0
  6. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/pyproject.toml +0 -0
  7. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/setup.cfg +0 -0
  8. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/__main__.py +0 -0
  9. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/analyzer.py +0 -0
  10. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/ast_visitor.py +0 -0
  11. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/config.py +0 -0
  12. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/__init__.py +0 -0
  13. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/boolean_logic.py +0 -0
  14. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/comparisons.py +0 -0
  15. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/complexity.py +0 -0
  16. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/context_manager.py +0 -0
  17. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/control_flow.py +0 -0
  18. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/dict_operations.py +0 -0
  19. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/duplication.py +0 -0
  20. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/loops.py +0 -0
  21. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/detectors/performance.py +0 -0
  22. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/models.py +0 -0
  23. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/py.typed +0 -0
  24. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor/reporter.py +0 -0
  25. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor.egg-info/SOURCES.txt +0 -0
  26. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor.egg-info/dependency_links.txt +0 -0
  27. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor.egg-info/entry_points.txt +0 -0
  28. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor.egg-info/requires.txt +0 -0
  29. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/src/pyrefactor.egg-info/top_level.txt +0 -0
  30. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_analyzer.py +0 -0
  31. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_boolean_logic_detector.py +0 -0
  32. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_cli.py +0 -0
  33. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_comparisons_detector.py +0 -0
  34. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_complexity_detector.py +0 -0
  35. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_config.py +0 -0
  36. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_context_manager_detector.py +0 -0
  37. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_control_flow_detector.py +0 -0
  38. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_dict_operations_detector.py +0 -0
  39. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_duplication_detector.py +0 -0
  40. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_hypothesis_analyzer.py +0 -0
  41. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_hypothesis_ast_visitor.py +0 -0
  42. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_hypothesis_config.py +0 -0
  43. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_hypothesis_models.py +0 -0
  44. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_hypothesis_reporter.py +0 -0
  45. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_integration.py +0 -0
  46. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_loops_detector.py +0 -0
  47. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_models.py +0 -0
  48. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_performance_detector.py +0 -0
  49. {pyrefactor-1.0.1 → pyrefactor-1.0.3}/tests/test_reporter.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyrefactor
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: A Python refactoring and optimization linter that analyzes code for performance issues, complexity problems, and opportunities for improvement
5
5
  Author: tboy1337
6
6
  Maintainer: tboy1337
@@ -45,7 +45,7 @@ Dynamic: license-file
45
45
 
46
46
  A powerful Python refactoring and optimization linter that analyzes your code for performance issues, complexity problems, and opportunities for improvement.
47
47
 
48
- [![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)
48
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
49
49
 
50
50
  ## Overview
51
51
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  A powerful Python refactoring and optimization linter that analyzes your code for performance issues, complexity problems, and opportunities for improvement.
4
4
 
5
- [![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)
5
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
6
6
 
7
7
  ## Overview
8
8
 
@@ -1,3 +1,3 @@
1
1
  """PyRefactor - A Python refactoring and optimization linter."""
2
2
 
3
- __version__ = "1.0.1"
3
+ __version__ = "1.0.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyrefactor
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: A Python refactoring and optimization linter that analyzes code for performance issues, complexity problems, and opportunities for improvement
5
5
  Author: tboy1337
6
6
  Maintainer: tboy1337
@@ -45,7 +45,7 @@ Dynamic: license-file
45
45
 
46
46
  A powerful Python refactoring and optimization linter that analyzes your code for performance issues, complexity problems, and opportunities for improvement.
47
47
 
48
- [![Python 3.13+](https://img.shields.io/badge/python-3.13+-blue.svg)](https://www.python.org/downloads/)
48
+ [![Python 3.9+](https://img.shields.io/badge/python-3.9+-blue.svg)](https://www.python.org/downloads/)
49
49
 
50
50
  ## Overview
51
51
 
File without changes
File without changes
File without changes
File without changes