pyallel 2.0.1__tar.gz → 2.0.3__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-2.0.1 → pyallel-2.0.3}/PKG-INFO +7 -5
- {pyallel-2.0.1 → pyallel-2.0.3}/README.md +1 -1
- {pyallel-2.0.1 → pyallel-2.0.3}/pyproject.toml +2 -3
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/printer.py +1 -1
- {pyallel-2.0.1 → pyallel-2.0.3}/LICENSE +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/__init__.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/colours.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/constants.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/errors.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/main.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/parser.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/process.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/process_group.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/process_group_manager.py +0 -0
- {pyallel-2.0.1 → pyallel-2.0.3}/src/pyallel/py.typed +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: pyallel
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.3
|
|
4
4
|
Summary: Run and handle the output of multiple executables in pyallel (as in parallel)
|
|
5
|
-
Home-page: https://github.com/Danthewaann/pyallel
|
|
6
5
|
License: MIT
|
|
6
|
+
License-File: LICENSE
|
|
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
|
|
10
|
+
Requires-Python: >=3.8
|
|
11
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
12
12
|
Classifier: License :: OSI Approved :: MIT License
|
|
13
13
|
Classifier: Operating System :: MacOS :: MacOS X
|
|
@@ -19,6 +19,8 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
21
|
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
|
+
Project-URL: Homepage, https://github.com/Danthewaann/pyallel
|
|
22
24
|
Project-URL: Repository, https://github.com/Danthewaann/pyallel
|
|
23
25
|
Description-Content-Type: text/markdown
|
|
24
26
|
|
|
@@ -26,7 +28,7 @@ Description-Content-Type: text/markdown
|
|
|
26
28
|
|
|
27
29
|
Run and handle the output of multiple executables in `pyallel` (as in parallel)
|
|
28
30
|
|
|
29
|
-
https://github.com/
|
|
31
|
+

|
|
30
32
|
|
|
31
33
|
Tested on Linux and MacOS only
|
|
32
34
|
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Run and handle the output of multiple executables in `pyallel` (as in parallel)
|
|
4
4
|
|
|
5
|
-
https://github.com/
|
|
5
|
+

|
|
6
6
|
|
|
7
7
|
Tested on Linux and MacOS only
|
|
8
8
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "pyallel"
|
|
3
|
-
version = "2.0.
|
|
3
|
+
version = "2.0.3"
|
|
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,12 +20,11 @@ classifiers = [
|
|
|
20
20
|
pyallel = "pyallel.main:entry_point"
|
|
21
21
|
|
|
22
22
|
[tool.poetry.dependencies]
|
|
23
|
-
python = ">=3.8
|
|
23
|
+
python = ">=3.8"
|
|
24
24
|
|
|
25
25
|
[tool.poetry.group.dev.dependencies]
|
|
26
26
|
pytest = "^7.4.3"
|
|
27
27
|
mypy = "^1.7.0"
|
|
28
|
-
pyinstaller = "6.11.0"
|
|
29
28
|
|
|
30
29
|
[tool.mypy]
|
|
31
30
|
strict = true
|
|
@@ -45,7 +45,7 @@ class ConsolePrinter:
|
|
|
45
45
|
columns = columns - truncate_num
|
|
46
46
|
if self.get_num_lines(line, columns) > 1:
|
|
47
47
|
line = self.truncate_line(line, columns)
|
|
48
|
-
print(f"{prefix}{line}", end=end, flush=flush)
|
|
48
|
+
print(f"{self._colours.reset_colour}{prefix}{line}", end=end, flush=flush)
|
|
49
49
|
|
|
50
50
|
def generate_process_output(
|
|
51
51
|
self,
|
|
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
|