path-sync 0.6.1__tar.gz → 0.6.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 (29) hide show
  1. {path_sync-0.6.1 → path_sync-0.6.2}/PKG-INFO +2 -2
  2. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/__init__.py +1 -1
  3. {path_sync-0.6.1 → path_sync-0.6.2}/pyproject.toml +2 -2
  4. {path_sync-0.6.1 → path_sync-0.6.2}/.gitignore +0 -0
  5. {path_sync-0.6.1 → path_sync-0.6.2}/LICENSE +0 -0
  6. {path_sync-0.6.1 → path_sync-0.6.2}/README.md +0 -0
  7. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/__main__.py +0 -0
  8. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/__init__.py +0 -0
  9. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/cmd_boot.py +0 -0
  10. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/cmd_copy.py +0 -0
  11. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/cmd_dep_update.py +0 -0
  12. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/cmd_options.py +0 -0
  13. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/cmd_validate.py +0 -0
  14. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/file_utils.py +0 -0
  15. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/git_ops.py +0 -0
  16. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/header.py +0 -0
  17. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/log_capture.py +0 -0
  18. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/models.py +0 -0
  19. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/models_dep.py +0 -0
  20. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/prompt_utils.py +0 -0
  21. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/typer_app.py +0 -0
  22. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/validation.py +0 -0
  23. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/verify.py +0 -0
  24. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/_internal/yaml_utils.py +0 -0
  25. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/config.py +0 -0
  26. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/copy.py +0 -0
  27. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/dep_update.py +0 -0
  28. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/sections.py +0 -0
  29. {path_sync-0.6.1 → path_sync-0.6.2}/path_sync/validate_no_changes.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: path-sync
3
- Version: 0.6.1
3
+ Version: 0.6.2
4
4
  Summary: Sync files from a source repo to multiple destination repos
5
5
  Author-email: EspenAlbert <espen.albert1@gmail.com>
6
6
  License-Expression: MIT
@@ -13,7 +13,7 @@ Requires-Dist: gitpython>=3.1.0
13
13
  Requires-Dist: pydantic>=2.0
14
14
  Requires-Dist: pyyaml>=6.0
15
15
  Requires-Dist: typer>=0.16.0
16
- Requires-Dist: zero-3rdparty>=0.102.0
16
+ Requires-Dist: zero-3rdparty>=0.104.2
17
17
  Description-Content-Type: text/markdown
18
18
 
19
19
  # path-sync
@@ -5,7 +5,7 @@ from path_sync import dep_update
5
5
  from path_sync import validate_no_changes
6
6
  from path_sync import config
7
7
 
8
- VERSION = "0.6.1"
8
+ VERSION = "0.6.2"
9
9
  __all__ = [
10
10
  "copy",
11
11
  "dep_update",
@@ -2,7 +2,7 @@
2
2
 
3
3
  [project]
4
4
  name = "path-sync"
5
- version = "0.6.1"
5
+ version = "0.6.2"
6
6
  description = "Sync files from a source repo to multiple destination repos"
7
7
  requires-python = ">=3.13"
8
8
  license = "MIT"
@@ -28,7 +28,7 @@ dependencies = [
28
28
  "pyyaml>=6.0",
29
29
  "typer>=0.16.0",
30
30
  "gitpython>=3.1.0",
31
- "zero-3rdparty>=0.102.0",
31
+ "zero-3rdparty>=0.104.2",
32
32
  ]
33
33
 
34
34
  [project.scripts]
File without changes
File without changes
File without changes
File without changes
File without changes