Skip to content

Commit 20b45e0

Browse files
committed
Maintenance: drop deprecated ParallelCallExceptions
1 parent bbc27df commit 20b45e0

File tree

3 files changed

+1
-10
lines changed

3 files changed

+1
-10
lines changed

exec_helpers/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,6 @@
5353
"ParallelCallProcessError",
5454
"ExecHelperNoKillError",
5555
"ExecHelperTimeoutError",
56-
# deprecated
57-
"ParallelCallExceptions",
5856
)
5957

6058
__locals: dict[str, typing.Any] = locals() # use mutable access for pure lazy loading
@@ -84,10 +82,9 @@
8482
"ParallelCallProcessError": "exceptions",
8583
"ExecHelperNoKillError": "exceptions",
8684
"ExecHelperTimeoutError": "exceptions",
87-
"ParallelCallExceptions": "exceptions",
8885
}
8986

90-
_deprecated: dict[str, str] = {"ParallelCallExceptions": "ParallelCallExceptionsError"}
87+
_deprecated: dict[str, str] = {}
9188

9289

9390
def __getattr__(name: str) -> typing.Any:

exec_helpers/__init__.pyi

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ from .exceptions import ExecCalledProcessError
2424
from .exceptions import ExecHelperError
2525
from .exceptions import ExecHelperNoKillError
2626
from .exceptions import ExecHelperTimeoutError
27-
from .exceptions import ParallelCallExceptions
2827
from .exceptions import ParallelCallExceptionsError
2928
from .exceptions import ParallelCallProcessError
3029
from .exec_result import ExecResult
@@ -62,8 +61,6 @@ __all__ = (
6261
"ParallelCallProcessError",
6362
"ExecHelperNoKillError",
6463
"ExecHelperTimeoutError",
65-
# deprecated
66-
"ParallelCallExceptions",
6764
)
6865

6966
_deprecated: dict[str, str] = ...

exec_helpers/exceptions.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -318,9 +318,6 @@ def __init__(
318318
self.exceptions: dict[tuple[str, int], Exception] = exceptions
319319

320320

321-
ParallelCallExceptions = ParallelCallExceptionsError
322-
323-
324321
class StopExecution(Exception):
325322
"""Stop execution without waiting for exit code."""
326323

0 commit comments

Comments
 (0)