stouputils 1.2.5__tar.gz → 1.2.7__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 (24) hide show
  1. {stouputils-1.2.5 → stouputils-1.2.7}/PKG-INFO +1 -1
  2. {stouputils-1.2.5 → stouputils-1.2.7}/pyproject.toml +1 -1
  3. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/applications/automatic_docs.py +3 -2
  4. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/decorators.py +1 -1
  5. {stouputils-1.2.5 → stouputils-1.2.7}/.gitignore +0 -0
  6. {stouputils-1.2.5 → stouputils-1.2.7}/LICENSE +0 -0
  7. {stouputils-1.2.5 → stouputils-1.2.7}/README.md +0 -0
  8. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/__init__.py +0 -0
  9. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/all_doctests.py +0 -0
  10. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/applications/__init__.py +0 -0
  11. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/archive.py +0 -0
  12. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/backup.py +0 -0
  13. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/collections.py +0 -0
  14. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/continuous_delivery/__init__.py +0 -0
  15. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/continuous_delivery/cd_utils.py +0 -0
  16. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/continuous_delivery/github.py +0 -0
  17. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/continuous_delivery/pypi.py +0 -0
  18. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/continuous_delivery/pyproject.py +0 -0
  19. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/ctx.py +0 -0
  20. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/dont_look/zip_file_override.py +0 -0
  21. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/io.py +0 -0
  22. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/parallel.py +0 -0
  23. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/print.py +0 -0
  24. {stouputils-1.2.5 → stouputils-1.2.7}/stouputils/py.typed +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: stouputils
3
- Version: 1.2.5
3
+ Version: 1.2.7
4
4
  Summary: Stouputils is a collection of utility modules designed to simplify and enhance the development process. It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers, and many more.
5
5
  Project-URL: Homepage, https://github.com/Stoupy51/stouputils
6
6
  Project-URL: Issues, https://github.com/Stoupy51/stouputils/issues
@@ -5,7 +5,7 @@ build-backend = "hatchling.build"
5
5
 
6
6
  [project]
7
7
  name = "stouputils"
8
- version = "1.2.5"
8
+ version = "1.2.7"
9
9
  description = "Stouputils is a collection of utility modules designed to simplify and enhance the development process. It includes a range of tools for tasks such as execution of doctests, display utilities, decorators, as well as context managers, and many more."
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.10"
@@ -506,8 +506,9 @@ def update_documentation(
506
506
  # If version is specified, copy the build directory to latest too
507
507
  # This is useful for GitHub Actions to prevent re-building the documentation from scratch without the version
508
508
  if version:
509
- shutil.rmtree(latest_dir)
510
- shutil.copytree(build_dir, latest_dir)
509
+ if os.path.exists(latest_dir):
510
+ shutil.rmtree(latest_dir)
511
+ shutil.copytree(build_dir, latest_dir, dirs_exist_ok=True)
511
512
 
512
513
  info(f"Documentation updated successfully!")
513
514
  info(f"You can view the documentation by opening {build_dir}/index.html")
@@ -158,7 +158,7 @@ force_raise_exception: bool = False
158
158
  def handle_error(
159
159
  exceptions: tuple[type[BaseException], ...] | type[BaseException] = (Exception,),
160
160
  message: str = "",
161
- error_log: LogLevels = LogLevels.ERROR_TRACEBACK
161
+ error_log: LogLevels = LogLevels.WARNING_TRACEBACK
162
162
  ) -> Callable[..., Any]:
163
163
  """ Decorator that handle an error with different log levels.
164
164
 
File without changes
File without changes
File without changes
File without changes
File without changes