dyngle 1.0.0__py3-none-any.whl → 1.0.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.
Potentially problematic release.
This version of dyngle might be problematic. Click here for more details.
dyngle/model/operation.py
CHANGED
|
@@ -48,7 +48,7 @@ class Step:
|
|
|
48
48
|
parse_step(self.markup)
|
|
49
49
|
|
|
50
50
|
def run(self, live_data: LiveData):
|
|
51
|
-
command = [Template(word).render(live_data)
|
|
51
|
+
command = [Template(word).render(live_data).strip()
|
|
52
52
|
for word in self.command_template]
|
|
53
53
|
pipes = {}
|
|
54
54
|
if self.input:
|
|
@@ -60,4 +60,4 @@ class Step:
|
|
|
60
60
|
raise DyngleError(
|
|
61
61
|
f'Step failed with code {result.returncode}: {self.markup}')
|
|
62
62
|
if self.output:
|
|
63
|
-
live_data[self.output] = result.stdout
|
|
63
|
+
live_data[self.output] = result.stdout.rstrip()
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: dyngle
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.1
|
|
4
4
|
Summary: Run lightweight local workflows
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Steampunk Wizard
|
|
7
7
|
Author-email: dyngle@steamwiz.io
|
|
8
|
-
Requires-Python: >=3.11,<
|
|
8
|
+
Requires-Python: >=3.11,<4.0
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
12
14
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
13
|
-
Requires-Dist: wizlib (>=3.
|
|
15
|
+
Requires-Dist: wizlib (>=3.3.8,<3.4.0)
|
|
14
16
|
Description-Content-Type: text/markdown
|
|
15
17
|
|
|
16
18
|
# Dyngle
|
|
@@ -6,10 +6,10 @@ dyngle/error.py,sha256=CGcTa8L4O1qsHEYnzp_JBbkvntJTv2Qz46wj_TI8NLk,39
|
|
|
6
6
|
dyngle/model/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
dyngle/model/expression.py,sha256=FqYOfotUzTHDyON9cUCwyO5Cw4jTphY_TuWjQyhvSFY,4220
|
|
8
8
|
dyngle/model/live_data.py,sha256=6YdCfCDjhzMoCC5Znuwn_T-UpqeU_3I38M1mOBOLh2U,629
|
|
9
|
-
dyngle/model/operation.py,sha256=
|
|
9
|
+
dyngle/model/operation.py,sha256=87TOCGr_ECgWaLOAkJs4xwqChZvE3FQiGU4jf33x8LY,1810
|
|
10
10
|
dyngle/model/safe_path.py,sha256=Hk2AhP6e3yKGh3kKrLLwhvAlMNx-j2jObBYJL-_doAU,3339
|
|
11
11
|
dyngle/model/template.py,sha256=MeXu--ZNtj_ujABU1GjjcQ1Ea_o_M-50LocuXFeOLRE,887
|
|
12
|
-
dyngle-1.0.
|
|
13
|
-
dyngle-1.0.
|
|
14
|
-
dyngle-1.0.
|
|
15
|
-
dyngle-1.0.
|
|
12
|
+
dyngle-1.0.1.dist-info/METADATA,sha256=jyuumkrmM3J37uXUvlVpssOGN1noeeSkcft8_IS4mwQ,9761
|
|
13
|
+
dyngle-1.0.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
14
|
+
dyngle-1.0.1.dist-info/entry_points.txt,sha256=rekiGhtweiHKm9g1jdGb3FhzqDrk1kigJDeSNollZSA,48
|
|
15
|
+
dyngle-1.0.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|