wexample-wex-addon-dev-python 7.4.0__py3-none-any.whl → 7.5.1__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.
@@ -481,7 +481,7 @@ class PythonPackageWorkdir(PythonWorkdir):
481
481
  ).get_str_or_none()
482
482
 
483
483
  if not repository_url:
484
- return # PyPI public — published locally, no polling needed
484
+ repository_url = "https://pypi.org"
485
485
 
486
486
  token = self.search_app_or_suite_runtime_config(
487
487
  "pdm.repository.token", default=None
@@ -326,7 +326,9 @@ class PythonWorkdir(WithProfilingPythonWorkdirMixin, CodeBaseWorkdir):
326
326
  text=True,
327
327
  )
328
328
  if result.returncode != 0:
329
- self.log(f"Warning: uv pip compile failed: {result.stderr}")
329
+ raise RuntimeError(
330
+ f"uv pip compile failed for {self.get_path()}:\n{result.stderr}"
331
+ )
330
332
 
331
333
  def _create_init_children_factory(self) -> ChildrenFileFactoryOption:
332
334
  from wexample_filestate.const.disk import DiskItemType
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-wex-addon-dev-python
3
- Version: 7.4.0
3
+ Version: 7.5.1
4
4
  Summary: Python dev addon for wex
5
5
  Author-Email: weeger <contact@wexample.com>
6
6
  License: MIT
@@ -16,7 +16,7 @@ Requires-Dist: networkx
16
16
  Requires-Dist: pylint
17
17
  Requires-Dist: pyright
18
18
  Requires-Dist: wexample-filestate-python>=6.4.0
19
- Requires-Dist: wexample-wex-addon-app>=11.1.0
19
+ Requires-Dist: wexample-wex-addon-app>=12.0.0
20
20
  Provides-Extra: dev
21
21
  Requires-Dist: pytest; extra == "dev"
22
22
  Requires-Dist: pytest-cov; extra == "dev"
@@ -24,7 +24,7 @@ Description-Content-Type: text/markdown
24
24
 
25
25
  # wex_addon_dev_python
26
26
 
27
- Version: 7.4.0
27
+ Version: 7.5.1
28
28
 
29
29
  Python dev addon for wex
30
30
 
@@ -111,7 +111,7 @@ Visit the [Wexample Suite documentation](https://docs.wexample.com) for the comp
111
111
  - pylint:
112
112
  - pyright:
113
113
  - wexample-filestate-python: >=6.4.0
114
- - wexample-wex-addon-app: >=11.1.0
114
+ - wexample-wex-addon-app: >=12.0.0
115
115
 
116
116
  ## Versioning & Compatibility Policy
117
117
 
@@ -1,6 +1,6 @@
1
- wexample_wex_addon_dev_python-7.4.0.dist-info/METADATA,sha256=vOXkr21G0G-FDrSyxGadTmhfnNn9Vv8XIPGyMTiSjr4,11755
2
- wexample_wex_addon_dev_python-7.4.0.dist-info/WHEEL,sha256=Z36eTX6lG3PITRleSd5hAZHCcz52yg3c0JQVxKBbLW0,90
3
- wexample_wex_addon_dev_python-7.4.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
1
+ wexample_wex_addon_dev_python-7.5.1.dist-info/METADATA,sha256=mD8CMokjbleesr1hYQLK5VDY5FS2wuJqgRhTpuL5QpA,11755
2
+ wexample_wex_addon_dev_python-7.5.1.dist-info/WHEEL,sha256=Z36eTX6lG3PITRleSd5hAZHCcz52yg3c0JQVxKBbLW0,90
3
+ wexample_wex_addon_dev_python-7.5.1.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
@@ -60,7 +60,7 @@ wexample_wex_addon_dev_python/workdir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCe
60
60
  wexample_wex_addon_dev_python/workdir/__pycache__/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
61
  wexample_wex_addon_dev_python/workdir/mixin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
62
  wexample_wex_addon_dev_python/workdir/mixin/with_profiling_python_workdir_mixin.py,sha256=rWf_AMq4YM_vvKYZiXyhFeAz2xg0KMt_u-1FJACtvjc,3042
63
- wexample_wex_addon_dev_python/workdir/python_package_workdir.py,sha256=DKTNvxVUDdcDU1w_g7C4DD44CEQc0tK3sgeOe7m0rKQ,19532
63
+ wexample_wex_addon_dev_python/workdir/python_package_workdir.py,sha256=80-N2LtISw9oDUGJgCcXgQktmbVnHkJMpWjnIcyuKSs,19505
64
64
  wexample_wex_addon_dev_python/workdir/python_packages_suite_workdir.py,sha256=ICHHewLpsXiheYzGDEahphBryH98ZVezWzSAy6A5w5I,2874
65
- wexample_wex_addon_dev_python/workdir/python_workdir.py,sha256=56OMSaDHribAQjS5mqT457WJ7R1DnRLDzOBWZHIhMaU,19070
66
- wexample_wex_addon_dev_python-7.4.0.dist-info/RECORD,,
65
+ wexample_wex_addon_dev_python/workdir/python_workdir.py,sha256=wt1Zf4odWR5Lo8qyCSQ1ARjfkyjWKd3-HQ3E4MDBhOI,19124
66
+ wexample_wex_addon_dev_python-7.5.1.dist-info/RECORD,,