wexample-wex-addon-dev-python 13.0.0__py3-none-any.whl → 13.1.0__py3-none-any.whl

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.
@@ -47,7 +47,7 @@ def python__service__setup(
47
47
  return
48
48
 
49
49
  try:
50
- builds = load_builds(app_path)
50
+ builds = load_builds(service.app_workdir)
51
51
  except (FileNotFoundError, KeyError):
52
52
  context.io.log("No docker.images in config.yml, skipping image build")
53
53
  return
@@ -409,18 +409,20 @@ class PythonWorkdir(
409
409
  if report_path.exists():
410
410
  self.info(f"Report: @path{{{report_path}}}")
411
411
 
412
- def update_dependencies(self, dependencies_map: dict[str, str]) -> None:
412
+ def update_dependencies(
413
+ self, dependencies_map: dict[str, str]
414
+ ) -> dict[str, dict[str, str]]:
413
415
  import subprocess
414
416
 
415
417
  from wexample_helpers.helper.retryable_callback_manager import (
416
418
  RetryableCallbackManager,
417
419
  )
418
420
 
419
- super().update_dependencies(dependencies_map)
421
+ changed = super().update_dependencies(dependencies_map)
420
422
 
421
423
  requirements_path = self.get_path() / "requirements.txt"
422
424
  if not requirements_path.exists():
423
- return
425
+ return changed
424
426
 
425
427
  pyproject_path = self.get_path() / "pyproject.toml"
426
428
 
@@ -468,6 +470,8 @@ class PythonWorkdir(
468
470
  ),
469
471
  ).run()
470
472
 
473
+ return changed
474
+
471
475
  def _create_init_children_factory(self) -> ChildrenFileFactoryOption:
472
476
  from wexample_filestate.const.disk import DiskItemType
473
477
  from wexample_filestate.const.globals import NAME_PATTERN_NO_LEADING_DOT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-wex-addon-dev-python
3
- Version: 13.0.0
3
+ Version: 13.1.0
4
4
  Summary: Python dev addon for wex
5
5
  Author-Email: weeger <contact@wexample.com>
6
6
  License: MIT
@@ -17,8 +17,8 @@ Requires-Dist: pylint
17
17
  Requires-Dist: pyright
18
18
  Requires-Dist: wexample-api>=6.8.0
19
19
  Requires-Dist: wexample-filestate-python>=9.0.0
20
- Requires-Dist: wexample-wex-addon-ai>=12.0.0
21
- Requires-Dist: wexample-wex-addon-app>=28.0.0
20
+ Requires-Dist: wexample-wex-addon-ai>=12.1.0
21
+ Requires-Dist: wexample-wex-addon-app>=29.0.0
22
22
  Provides-Extra: dev
23
23
  Requires-Dist: pytest; extra == "dev"
24
24
  Requires-Dist: pytest-cov; extra == "dev"
@@ -26,7 +26,7 @@ Description-Content-Type: text/markdown
26
26
 
27
27
  # wex_addon_dev_python
28
28
 
29
- Version: 13.0.0
29
+ Version: 13.1.0
30
30
 
31
31
  Python dev addon for wex
32
32
 
@@ -114,8 +114,8 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
114
114
  - pyright:
115
115
  - wexample-api: >=6.8.0
116
116
  - wexample-filestate-python: >=9.0.0
117
- - wexample-wex-addon-ai: >=12.0.0
118
- - wexample-wex-addon-app: >=28.0.0
117
+ - wexample-wex-addon-ai: >=12.1.0
118
+ - wexample-wex-addon-app: >=29.0.0
119
119
 
120
120
  ## Versioning & Compatibility Policy
121
121
 
@@ -1,6 +1,6 @@
1
- wexample_wex_addon_dev_python-13.0.0.dist-info/METADATA,sha256=9v8tSPOcE8i4ipn3l-Lp9AjMdTxVSgVyC0f8BM4e7hM,17390
2
- wexample_wex_addon_dev_python-13.0.0.dist-info/WHEEL,sha256=VP-D4TPS230sME9Z3vb3INXvo1yt0924YRm5AOsk_dE,90
3
- wexample_wex_addon_dev_python-13.0.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
1
+ wexample_wex_addon_dev_python-13.1.0.dist-info/METADATA,sha256=QxJEg1bv5rHYcHoaux2XieF4fnn6BlGuCeEfK5HiN8E,17390
2
+ wexample_wex_addon_dev_python-13.1.0.dist-info/WHEEL,sha256=VP-D4TPS230sME9Z3vb3INXvo1yt0924YRm5AOsk_dE,90
3
+ wexample_wex_addon_dev_python-13.1.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
4
4
  wexample_wex_addon_dev_python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
5
  wexample_wex_addon_dev_python/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  wexample_wex_addon_dev_python/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -67,7 +67,7 @@ wexample_wex_addon_dev_python/services/python/app_service.py,sha256=OeM7f-IHm7lf
67
67
  wexample_wex_addon_dev_python/services/python/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
68
  wexample_wex_addon_dev_python/services/python/commands/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
69
  wexample_wex_addon_dev_python/services/python/commands/service/install.py,sha256=DUH1NNImQhhAJo_w0gF0yb0vrfrmPHgXR2KKHaUAd38,1836
70
- wexample_wex_addon_dev_python/services/python/commands/service/setup.py,sha256=xlR1uYH9VB3Shl7oj3v3HAviq5xR0XfxnQRGsl5HanU,2360
70
+ wexample_wex_addon_dev_python/services/python/commands/service/setup.py,sha256=rzaImYbuHIZhUuYwjGzctyJKKIjjOncYPpER082uZyc,2371
71
71
  wexample_wex_addon_dev_python/services/python/docker/.wex.yml,sha256=JdIF6nGkFcfi76yZYGlXxeWfOK4eAUSV_gAn6i3hk2w,32
72
72
  wexample_wex_addon_dev_python/services/python/docker/docker-compose.yml,sha256=W7uricaPSfkiWIczbzunFb2ooa409XH3dEkhb18uCLk,491
73
73
  wexample_wex_addon_dev_python/services/python/samples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -84,5 +84,5 @@ wexample_wex_addon_dev_python/workdir/mixin/__init__.py,sha256=47DEQpj8HBSa-_TIm
84
84
  wexample_wex_addon_dev_python/workdir/mixin/with_profiling_python_workdir_mixin.py,sha256=PA_kqwe2kF5t1nKakX5Q-6fant2R18aEnZfkjr6iJ6k,3097
85
85
  wexample_wex_addon_dev_python/workdir/python_package_workdir.py,sha256=LvYIJ1V6cUMrjEt7y5IrZ3KRDv_d9Gkv89GNL8-uoeo,18028
86
86
  wexample_wex_addon_dev_python/workdir/python_packages_suite_workdir.py,sha256=7Jb5mKGNV2RjFtrFhUm6jbkiTfLDmy7sA97UGHITVdw,2902
87
- wexample_wex_addon_dev_python/workdir/python_workdir.py,sha256=3wMPJ8WOQHYermfMH3OJumsPeq7h3q7TA92WYJbT75Q,27082
88
- wexample_wex_addon_dev_python-13.0.0.dist-info/RECORD,,
87
+ wexample_wex_addon_dev_python/workdir/python_workdir.py,sha256=0DSHj2EbhJeRafWs6li9aSmAprKcC3VwWmuuzU4kG_Y,27159
88
+ wexample_wex_addon_dev_python-13.1.0.dist-info/RECORD,,