wexample-wex-addon-dev-python 12.0.0__py3-none-any.whl → 12.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.
@@ -138,7 +138,9 @@ def _resolve_scope_roots(kernel, app_workdir):
138
138
 
139
139
  Looks up a containing suite via `find_suite_workdir_path()`; if found,
140
140
  materialises the suite workdir and returns the path of every ordered
141
- sibling package. Otherwise falls back to the current workdir alone.
141
+ sibling package PLUS any consumer paths declared in the suite config
142
+ (resolved by `get_consumers_paths()`). Otherwise falls back to the
143
+ current workdir alone.
142
144
  """
143
145
  from wexample_wex_addon_app.app_addon_manager import AppAddonManager
144
146
 
@@ -154,7 +156,12 @@ def _resolve_scope_roots(kernel, app_workdir):
154
156
  return [app_workdir.get_path()], f"workdir={app_workdir.get_path()}"
155
157
 
156
158
  roots = [p.get_path() for p in packages]
157
- return roots, f"suite={suite_path} (packages={len(roots)})"
159
+ consumers = suite_workdir.get_consumers_paths()
160
+ roots.extend(consumers)
161
+ return (
162
+ roots,
163
+ f"suite={suite_path} (packages={len(packages)}, consumers={len(consumers)})",
164
+ )
158
165
 
159
166
 
160
167
  def _shortest_rel(path, roots):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-wex-addon-dev-python
3
- Version: 12.0.0
3
+ Version: 12.1.0
4
4
  Summary: Python dev addon for wex
5
5
  Author-Email: weeger <contact@wexample.com>
6
6
  License: MIT
@@ -18,7 +18,7 @@ Requires-Dist: pyright
18
18
  Requires-Dist: wexample-api>=6.6.0
19
19
  Requires-Dist: wexample-filestate-python>=8.2.0
20
20
  Requires-Dist: wexample-wex-addon-ai>=11.3.0
21
- Requires-Dist: wexample-wex-addon-app>=26.1.0
21
+ Requires-Dist: wexample-wex-addon-app>=26.2.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: 12.0.0
29
+ Version: 12.1.0
30
30
 
31
31
  Python dev addon for wex
32
32
 
@@ -115,7 +115,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
115
115
  - wexample-api: >=6.6.0
116
116
  - wexample-filestate-python: >=8.2.0
117
117
  - wexample-wex-addon-ai: >=11.3.0
118
- - wexample-wex-addon-app: >=26.1.0
118
+ - wexample-wex-addon-app: >=26.2.0
119
119
 
120
120
  ## Versioning & Compatibility Policy
121
121
 
@@ -1,6 +1,6 @@
1
- wexample_wex_addon_dev_python-12.0.0.dist-info/METADATA,sha256=QWfJVnL-t8swFKjnGK4JQxFthMoYD_qqZGSrNDvG-58,17390
2
- wexample_wex_addon_dev_python-12.0.0.dist-info/WHEEL,sha256=VP-D4TPS230sME9Z3vb3INXvo1yt0924YRm5AOsk_dE,90
3
- wexample_wex_addon_dev_python-12.0.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
1
+ wexample_wex_addon_dev_python-12.1.0.dist-info/METADATA,sha256=3l4q3bHBYMwwX3wo7owsj-WsG0jTvFW8XummIcD99Bs,17390
2
+ wexample_wex_addon_dev_python-12.1.0.dist-info/WHEEL,sha256=VP-D4TPS230sME9Z3vb3INXvo1yt0924YRm5AOsk_dE,90
3
+ wexample_wex_addon_dev_python-12.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
@@ -14,7 +14,7 @@ wexample_wex_addon_dev_python/commands/code/format.py,sha256=AmvvbY1vPMOYafI19wl
14
14
  wexample_wex_addon_dev_python/commands/code/format/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
15
15
  wexample_wex_addon_dev_python/commands/code/format/black.py,sha256=hYSr0-vqzwdHzg1qSZHOoLY09nyTCEgzds73smG-lSw,1404
16
16
  wexample_wex_addon_dev_python/commands/code/format/isort.py,sha256=sj3Ucc78koiWEJXTZW8X9v8g7ODRQmQazQ_kiwzV2sE,1469
17
- wexample_wex_addon_dev_python/commands/code/rename.py,sha256=iX61Nmz8HF1aTwYxsvgwhvjsKov4MCsRtHQQ8jDkIeg,5595
17
+ wexample_wex_addon_dev_python/commands/code/rename.py,sha256=3sXLXIJty_oUZHtqoYZLg9Yeo1lHvYzlU6yS0LDpzX0,5830
18
18
  wexample_wex_addon_dev_python/commands/examples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
19
  wexample_wex_addon_dev_python/commands/examples/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
20
  wexample_wex_addon_dev_python/commands/examples/utils/some_example_type.py,sha256=zusGlLOLkt2EpPFk38FIRA6d_5Q92Y7-TLj8ofHhQk0,121
@@ -77,4 +77,4 @@ wexample_wex_addon_dev_python/workdir/mixin/with_profiling_python_workdir_mixin.
77
77
  wexample_wex_addon_dev_python/workdir/python_package_workdir.py,sha256=M-5jOhLCIIfOc4zmBatD2ytBWTkWLTZ3an75ERQ8vSM,18036
78
78
  wexample_wex_addon_dev_python/workdir/python_packages_suite_workdir.py,sha256=7Jb5mKGNV2RjFtrFhUm6jbkiTfLDmy7sA97UGHITVdw,2902
79
79
  wexample_wex_addon_dev_python/workdir/python_workdir.py,sha256=h-k2L-hg4A96VW-tcrpZtxVVdFcpdAt1pe1K6sdGiZc,27088
80
- wexample_wex_addon_dev_python-12.0.0.dist-info/RECORD,,
80
+ wexample_wex_addon_dev_python-12.1.0.dist-info/RECORD,,