dyngle 1.0.0__tar.gz → 1.0.1__tar.gz

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.

@@ -1,16 +1,18 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dyngle
3
- Version: 1.0.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,<3.12
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.1.4,<4.0.0)
15
+ Requires-Dist: wizlib (>=3.3.8,<3.4.0)
14
16
  Description-Content-Type: text/markdown
15
17
 
16
18
  # Dyngle
@@ -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()
@@ -8,11 +8,11 @@ description = "Run lightweight local workflows"
8
8
  authors = ["Steampunk Wizard <dyngle@steamwiz.io>"]
9
9
  license = "MIT"
10
10
  readme = "PACKAGE.md"
11
- version = "1.0.0"
11
+ version = "1.0.1"
12
12
 
13
13
  [tool.poetry.dependencies]
14
- python = "~3.11"
15
- wizlib = "^3.1.4"
14
+ python = "^3.11"
15
+ wizlib = "~3.3.8"
16
16
  requests = "^2.32.3"
17
17
 
18
18
  [tool.poetry.group.dev.dependencies]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes