kellerlab-pre-commit-hooks 0.2.1__tar.gz → 0.2.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 (16) hide show
  1. {kellerlab_pre_commit_hooks-0.2.1/src/kellerlab_pre_commit_hooks.egg-info → kellerlab_pre_commit_hooks-0.2.3}/PKG-INFO +1 -1
  2. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/pyproject.toml +1 -1
  3. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3/src/kellerlab_pre_commit_hooks.egg-info}/PKG-INFO +1 -1
  4. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/src/pre_commit_hooks/flatten_validate.py +2 -2
  5. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/LICENSE +0 -0
  6. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/README.md +0 -0
  7. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/setup.cfg +0 -0
  8. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/src/kellerlab_pre_commit_hooks.egg-info/SOURCES.txt +0 -0
  9. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/src/kellerlab_pre_commit_hooks.egg-info/dependency_links.txt +0 -0
  10. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/src/kellerlab_pre_commit_hooks.egg-info/entry_points.txt +0 -0
  11. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/src/kellerlab_pre_commit_hooks.egg-info/requires.txt +0 -0
  12. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/src/kellerlab_pre_commit_hooks.egg-info/top_level.txt +0 -0
  13. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/src/pre_commit_hooks/__init__.py +0 -0
  14. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/src/pre_commit_hooks/optimize_images.py +0 -0
  15. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/tests/test_flatten_validate.py +0 -0
  16. {kellerlab_pre_commit_hooks-0.2.1 → kellerlab_pre_commit_hooks-0.2.3}/tests/test_optimize_images.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kellerlab-pre-commit-hooks
3
- Version: 0.2.1
3
+ Version: 0.2.3
4
4
  Summary: Reusable pre-commit hooks for OpenSCAD projects
5
5
  Author-email: Patrick Pötz <kellervater@gmail.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "kellerlab-pre-commit-hooks"
7
- version = "0.2.1"
7
+ version = "0.2.3"
8
8
  description = "Reusable pre-commit hooks for OpenSCAD projects"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kellerlab-pre-commit-hooks
3
- Version: 0.2.1
3
+ Version: 0.2.3
4
4
  Summary: Reusable pre-commit hooks for OpenSCAD projects
5
5
  Author-email: Patrick Pötz <kellervater@gmail.com>
6
6
  License-Expression: MIT
@@ -103,7 +103,7 @@ def main():
103
103
  return 1
104
104
 
105
105
  if not flatten_dirs:
106
- print(" No flatten directories to validate")
106
+ print("OK: No flatten directories to validate")
107
107
  return 0
108
108
 
109
109
  modified = _git_modified(flatten_dirs)
@@ -127,7 +127,7 @@ def main():
127
127
  print(f" git add {dirs}")
128
128
  return 1
129
129
 
130
- print(" All flattened files are committed")
130
+ print("OK: All flattened files are committed")
131
131
  return 0
132
132
 
133
133