pyallel 1.2.3__tar.gz → 1.2.4__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.
- {pyallel-1.2.3 → pyallel-1.2.4}/PKG-INFO +2 -2
- {pyallel-1.2.3 → pyallel-1.2.4}/pyproject.toml +2 -2
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/process_group.py +1 -2
- {pyallel-1.2.3 → pyallel-1.2.4}/LICENSE +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/README.md +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/__init__.py +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/colours.py +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/constants.py +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/errors.py +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/main.py +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/parser.py +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/process.py +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/process_group_manager.py +0 -0
- {pyallel-1.2.3 → pyallel-1.2.4}/src/pyallel/py.typed +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyallel
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.4
|
|
4
4
|
Summary: Run and handle the output of multiple executables in pyallel (as in parallel)
|
|
5
5
|
Home-page: https://github.com/Danthewaann/pyallel
|
|
6
6
|
License: MIT
|
|
7
7
|
Keywords: parallel,command,runner,executable,shell,terminal
|
|
8
8
|
Author: Daniel Black
|
|
9
9
|
Author-email: danielcrblack@gmail.com
|
|
10
|
-
Requires-Python: >=3.8,<3.
|
|
10
|
+
Requires-Python: >=3.8,<3.14
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pyallel"
|
|
3
|
-
version = "1.2.
|
|
3
|
+
version = "1.2.4"
|
|
4
4
|
description = "Run and handle the output of multiple executables in pyallel (as in parallel)"
|
|
5
5
|
authors = ["Daniel Black <danielcrblack@gmail.com>"]
|
|
6
6
|
license = "MIT"
|
|
@@ -20,7 +20,7 @@ classifiers = [
|
|
|
20
20
|
pyallel = "pyallel.main:entry_point"
|
|
21
21
|
|
|
22
22
|
[tool.poetry.dependencies]
|
|
23
|
-
python = ">=3.8,<3.
|
|
23
|
+
python = ">=3.8,<3.14"
|
|
24
24
|
|
|
25
25
|
[tool.poetry.group.dev.dependencies]
|
|
26
26
|
pytest = "^7.4.3"
|
|
@@ -294,9 +294,8 @@ class ProcessGroup:
|
|
|
294
294
|
p_output_lines = 0
|
|
295
295
|
if p_output:
|
|
296
296
|
if not all:
|
|
297
|
-
p_output_lines = p_output.splitlines()[-self.process_lines[i - 1] :]
|
|
298
297
|
p_output = ""
|
|
299
|
-
for line in
|
|
298
|
+
for line in p_output.splitlines()[-self.process_lines[i - 1] :]:
|
|
300
299
|
if len(line) + 3 > constants.COLUMNS():
|
|
301
300
|
p_output += f"{''.join(line[:constants.COLUMNS()-3])}\n"
|
|
302
301
|
else:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|