wexample-wex-addon-dev-python 7.8.0__py3-none-any.whl → 7.9.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.
@@ -23,16 +23,22 @@ def python__service__install(
23
23
  config_file = service.app_workdir.get_config_file()
24
24
  config = config_file.read_config()
25
25
 
26
+ from wexample_app.const.globals import WORKDIR_SETUP_DIR
27
+
26
28
  if config.search("docker.images").is_none():
27
29
  config.set_by_path(
28
30
  "docker.images",
29
31
  {
30
32
  "base": {
31
- "dockerfile": ".wex/docker/images/Dockerfile.base",
33
+ "dockerfile": str(
34
+ WORKDIR_SETUP_DIR / "docker" / "images" / "Dockerfile.base"
35
+ ),
32
36
  "tag": f"{project_name}:local",
33
37
  },
34
38
  "develop": {
35
- "dockerfile": ".wex/docker/images/Dockerfile.develop",
39
+ "dockerfile": str(
40
+ WORKDIR_SETUP_DIR / "docker" / "images" / "Dockerfile.develop"
41
+ ),
36
42
  "tag": f"{project_name}-dev:local",
37
43
  "depends_on": "base",
38
44
  },
@@ -20,6 +20,7 @@ def python__service__setup(
20
20
  ) -> None:
21
21
  import subprocess
22
22
 
23
+ from wexample_app.const.globals import WORKDIR_LOCAL_DIR_NAME, WORKDIR_SETUP_DIR
23
24
  from wexample_helpers.helpers.file import file_mkdir_as_real_user
24
25
  from wexample_wex_addon_app.helpers.image_builds import (
25
26
  load_builds,
@@ -27,7 +28,7 @@ def python__service__setup(
27
28
  )
28
29
 
29
30
  app_path = service.app_workdir.get_path()
30
- lock_dir = app_path / ".wex" / "local" / "setup"
31
+ lock_dir = app_path / WORKDIR_SETUP_DIR / WORKDIR_LOCAL_DIR_NAME / "setup"
31
32
  lock_file = lock_dir / "python.done"
32
33
 
33
34
  if lock_file.exists():
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: wexample-wex-addon-dev-python
3
- Version: 7.8.0
3
+ Version: 7.9.0
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>=13.0.0
19
+ Requires-Dist: wexample-wex-addon-app>=14.1.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.8.0
27
+ Version: 7.9.0
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: >=13.0.0
114
+ - wexample-wex-addon-app: >=14.1.0
115
115
 
116
116
  ## Versioning & Compatibility Policy
117
117
 
@@ -1,6 +1,6 @@
1
- wexample_wex_addon_dev_python-7.8.0.dist-info/METADATA,sha256=pOzFAbqBDaTvx-FAOcder9bLjhUtJFBGo4TjSelrAio,11755
2
- wexample_wex_addon_dev_python-7.8.0.dist-info/WHEEL,sha256=Z36eTX6lG3PITRleSd5hAZHCcz52yg3c0JQVxKBbLW0,90
3
- wexample_wex_addon_dev_python-7.8.0.dist-info/entry_points.txt,sha256=6OYgBcLyFCUgeqLgnvMyOJxPCWzgy7se4rLPKtNonMs,34
1
+ wexample_wex_addon_dev_python-7.9.0.dist-info/METADATA,sha256=kdRR0PKXm4oJuK2q8bgqnZ8qqnMqKS4s9LlC7K8hobw,11755
2
+ wexample_wex_addon_dev_python-7.9.0.dist-info/WHEEL,sha256=Z36eTX6lG3PITRleSd5hAZHCcz52yg3c0JQVxKBbLW0,90
3
+ wexample_wex_addon_dev_python-7.9.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
@@ -44,8 +44,8 @@ wexample_wex_addon_dev_python/services/python/__init__.py,sha256=47DEQpj8HBSa-_T
44
44
  wexample_wex_addon_dev_python/services/python/app_service.py,sha256=dZ2FtpiojLHhk5nh8mXd1acCaJQW1gNlFRy0-tUTJJM,2263
45
45
  wexample_wex_addon_dev_python/services/python/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
46
  wexample_wex_addon_dev_python/services/python/commands/service/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
- wexample_wex_addon_dev_python/services/python/commands/service/install.py,sha256=x9beybjhBUw3qPQB1d5VNs3dxZhCuqOxvW6lbwcev-w,1380
48
- wexample_wex_addon_dev_python/services/python/commands/service/setup.py,sha256=1WpLBYVu56zCfuh5JK7Z4JGxKroCDvMSjmBasHvhrLE,1840
47
+ wexample_wex_addon_dev_python/services/python/commands/service/install.py,sha256=gqGfT9mbdutBfIiLKAqJLZuSc4n0YR1huANC9sCoMdA,1590
48
+ wexample_wex_addon_dev_python/services/python/commands/service/setup.py,sha256=97YjkfIBOin4BSdLgToaTC8QU291Xyqvip4rbk4mS6w,1951
49
49
  wexample_wex_addon_dev_python/services/python/docker/.wex.yml,sha256=JdIF6nGkFcfi76yZYGlXxeWfOK4eAUSV_gAn6i3hk2w,32
50
50
  wexample_wex_addon_dev_python/services/python/docker/docker-compose.yml,sha256=zr9jm99KXyhOe1RZJ1nxgwqbi62xTXClvyhtA9jAAFc,463
51
51
  wexample_wex_addon_dev_python/services/python/samples/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -63,4 +63,4 @@ wexample_wex_addon_dev_python/workdir/mixin/with_profiling_python_workdir_mixin.
63
63
  wexample_wex_addon_dev_python/workdir/python_package_workdir.py,sha256=MeTw4C6i3ug8g9BB0D1SjW8-VkRFD08TYhrrkW6LFD4,20127
64
64
  wexample_wex_addon_dev_python/workdir/python_packages_suite_workdir.py,sha256=ICHHewLpsXiheYzGDEahphBryH98ZVezWzSAy6A5w5I,2874
65
65
  wexample_wex_addon_dev_python/workdir/python_workdir.py,sha256=BCFARcJAAU8pidcB_3m4OIgIC0nmWYvwBW6FBT25HsM,19154
66
- wexample_wex_addon_dev_python-7.8.0.dist-info/RECORD,,
66
+ wexample_wex_addon_dev_python-7.9.0.dist-info/RECORD,,