Skip to content

Commit 359dd18

Browse files
[pre-commit.ci] pre-commit autoupdate (#83)
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Tobias Raabe <[email protected]>
1 parent 6de2cae commit 359dd18

14 files changed

+63
-43
lines changed

.pre-commit-config.yaml

+4-9
Original file line numberDiff line numberDiff line change
@@ -22,22 +22,17 @@ repos:
2222
- id: python-no-log-warn
2323
- id: python-use-type-annotations
2424
- id: text-unicode-replacement-char
25-
- repo: https://github.com/asottile/reorder-python-imports
26-
rev: v3.12.0
27-
hooks:
28-
- id: reorder-python-imports
29-
args: [--py38-plus, --add-import, 'from __future__ import annotations']
3025
- repo: https://github.com/astral-sh/ruff-pre-commit
31-
rev: v0.1.11
26+
rev: v0.3.3
3227
hooks:
3328
- id: ruff
3429
- id: ruff-format
3530
- repo: https://github.com/dosisod/refurb
36-
rev: v1.27.0
31+
rev: v2.0.0
3732
hooks:
3833
- id: refurb
3934
- repo: https://github.com/kynan/nbstripout
40-
rev: 0.6.1
35+
rev: 0.7.1
4136
hooks:
4237
- id: nbstripout
4338
- repo: https://github.com/executablebooks/mdformat
@@ -54,7 +49,7 @@ repos:
5449
hooks:
5550
- id: codespell
5651
- repo: https://github.com/pre-commit/mirrors-mypy
57-
rev: 'v1.8.0'
52+
rev: 'v1.9.0'
5853
hooks:
5954
- id: mypy
6055
args: [

pyproject.toml

+16-10
Original file line numberDiff line numberDiff line change
@@ -81,38 +81,36 @@ no_implicit_optional = true
8181
warn_redundant_casts = true
8282
warn_unused_ignores = true
8383

84-
8584
[[tool.mypy.overrides]]
8685
module = "tests.*"
8786
disallow_untyped_defs = false
8887
ignore_errors = true
8988

90-
9189
[tool.ruff]
9290
target-version = "py38"
93-
select = ["ALL"]
9491
fix = true
92+
unsafe-fixes = true
93+
94+
[tool.ruff.lint]
9595
extend-ignore = [
96-
"I", # ignore isort
97-
"TRY", # ignore tryceratops.
98-
"TCH", # ignore non-guarded type imports.
9996
# Others.
10097
"ANN101", # type annotating self
10198
"ANN102", # type annotating cls
10299
"ANN401", # flake8-annotate typing.Any
103100
"COM812", # Comply with ruff-format.
104101
"ISC001", # Comply with ruff-format.
105102
]
103+
select = ["ALL"]
106104

107-
108-
[tool.ruff.per-file-ignores]
105+
[tool.ruff.lint.per-file-ignores]
109106
"tests/*" = ["D", "ANN", "PLR2004", "S101"]
110107

108+
[tool.ruff.lint.isort]
109+
force-single-line = true
111110

112-
[tool.ruff.pydocstyle]
111+
[tool.ruff.lint.pydocstyle]
113112
convention = "numpy"
114113

115-
116114
[tool.pytest.ini_options]
117115
# Do not add src since it messes with the loading of pytask-parallel as a plugin.
118116
testpaths = ["tests"]
@@ -123,3 +121,11 @@ markers = [
123121
"end_to_end: Flag for tests that cover the whole program.",
124122
]
125123
norecursedirs = [".idea", ".tox"]
124+
125+
[tool.coverage.report]
126+
exclude_also = [
127+
"pragma: no cover",
128+
"if TYPE_CHECKING.*:",
129+
"\\.\\.\\.",
130+
"def __repr__",
131+
]

src/pytask_parallel/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Contains the main namespace of the package."""
2+
23
from __future__ import annotations
34

45
try:

src/pytask_parallel/backends.py

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""Configures the available backends."""
2+
23
from __future__ import annotations
34

45
import enum

src/pytask_parallel/build.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
"""Extend the build command."""
2+
23
from __future__ import annotations
34

45
import click
56
from pytask import EnumChoice
67
from pytask import hookimpl
8+
79
from pytask_parallel.backends import PARALLEL_BACKENDS_DEFAULT
810
from pytask_parallel.backends import ParallelBackend
911

src/pytask_parallel/config.py

+2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
"""Configure pytask."""
2+
23
from __future__ import annotations
34

45
import enum
56
import os
67
from typing import Any
78

89
from pytask import hookimpl
10+
911
from pytask_parallel.backends import ParallelBackend
1012

1113

src/pytask_parallel/execute.py

+18-12
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,49 @@
11
"""Contains code relevant to the execution."""
2+
23
from __future__ import annotations
34

45
import inspect
56
import sys
67
import time
78
import warnings
8-
from concurrent.futures import Future
99
from functools import partial
10-
from pathlib import Path
11-
from types import ModuleType
12-
from types import TracebackType
10+
from typing import TYPE_CHECKING
1311
from typing import Any
1412
from typing import Callable
1513

1614
import cloudpickle
1715
from attrs import define
1816
from attrs import field
19-
from pytask import console
2017
from pytask import ExecutionReport
21-
from pytask import get_marks
22-
from pytask import hookimpl
2318
from pytask import Mark
24-
from pytask import parse_warning_filter
2519
from pytask import PNode
2620
from pytask import PTask
2721
from pytask import PythonNode
28-
from pytask import remove_internal_traceback_frames_from_exc_info
2922
from pytask import Session
3023
from pytask import Task
31-
from pytask import warning_record_to_str
3224
from pytask import WarningReport
25+
from pytask import console
26+
from pytask import get_marks
27+
from pytask import hookimpl
28+
from pytask import parse_warning_filter
29+
from pytask import remove_internal_traceback_frames_from_exc_info
30+
from pytask import warning_record_to_str
3331
from pytask.tree_util import PyTree
3432
from pytask.tree_util import tree_leaves
3533
from pytask.tree_util import tree_map
3634
from pytask.tree_util import tree_structure
35+
from rich.traceback import Traceback
36+
3737
from pytask_parallel.backends import PARALLEL_BACKENDS
3838
from pytask_parallel.backends import ParallelBackend
39-
from rich.console import ConsoleOptions
40-
from rich.traceback import Traceback
39+
40+
if TYPE_CHECKING:
41+
from concurrent.futures import Future
42+
from pathlib import Path
43+
from types import ModuleType
44+
from types import TracebackType
45+
46+
from rich.console import ConsoleOptions
4147

4248

4349
@hookimpl

src/pytask_parallel/logging.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
"""Contains code relevant to logging."""
2+
23
from __future__ import annotations
34

5+
from pytask import Session
46
from pytask import console
57
from pytask import hookimpl
6-
from pytask import Session
78

89

910
@hookimpl(trylast=True)

src/pytask_parallel/plugin.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
"""Entry-point for the plugin."""
2+
23
from __future__ import annotations
34

4-
from pluggy import PluginManager
5+
from typing import TYPE_CHECKING
6+
57
from pytask import hookimpl
8+
69
from pytask_parallel import build
710
from pytask_parallel import config
811
from pytask_parallel import execute
912
from pytask_parallel import logging
1013

14+
if TYPE_CHECKING:
15+
from pluggy import PluginManager
16+
1117

1218
@hookimpl
1319
def pytask_add_hooks(pm: PluginManager) -> None:

tests/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class SysPathsSnapshot:
1515
"""A snapshot for sys.path."""
1616

1717
def __init__(self) -> None:
18-
self.__saved = list(sys.path), list(sys.meta_path)
18+
self.__saved = sys.path.copy(), sys.meta_path.copy()
1919

2020
def restore(self) -> None:
2121
sys.path[:], sys.meta_path[:] = self.__saved
@@ -26,7 +26,7 @@ class SysModulesSnapshot:
2626

2727
def __init__(self, preserve: Callable[[str], bool] | None = None) -> None:
2828
self.__preserve = preserve
29-
self.__saved = dict(sys.modules)
29+
self.__saved = sys.modules.copy()
3030

3131
def restore(self) -> None:
3232
if self.__preserve:

tests/test_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
import textwrap
55

66
import pytest
7-
from pytask import build
87
from pytask import ExitCode
8+
from pytask import build
99
from pytask_parallel.backends import ParallelBackend
1010

1111

tests/test_execute.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
from time import time
55

66
import pytest
7+
from pytask import ExitCode
78
from pytask import build
89
from pytask import cli
9-
from pytask import ExitCode
1010
from pytask_parallel.backends import PARALLEL_BACKENDS
1111
from pytask_parallel.backends import ParallelBackend
1212
from pytask_parallel.execute import _Sleeper

tests/test_jupyter/test_functional_interface.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"cell_type": "code",
55
"execution_count": null,
6-
"id": "12bc75b1",
6+
"id": "0",
77
"metadata": {},
88
"outputs": [],
99
"source": [
@@ -18,7 +18,7 @@
1818
{
1919
"cell_type": "code",
2020
"execution_count": null,
21-
"id": "29ac7311",
21+
"id": "1",
2222
"metadata": {},
2323
"outputs": [],
2424
"source": [
@@ -39,7 +39,7 @@
3939
{
4040
"cell_type": "code",
4141
"execution_count": null,
42-
"id": "738c9418",
42+
"id": "2",
4343
"metadata": {},
4444
"outputs": [],
4545
"source": [

tests/test_jupyter/test_functional_interface_w_relative_path.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"cell_type": "code",
55
"execution_count": null,
6-
"id": "12bc75b1",
6+
"id": "0",
77
"metadata": {},
88
"outputs": [],
99
"source": [
@@ -18,7 +18,7 @@
1818
{
1919
"cell_type": "code",
2020
"execution_count": null,
21-
"id": "29ac7311",
21+
"id": "1",
2222
"metadata": {},
2323
"outputs": [],
2424
"source": [
@@ -39,7 +39,7 @@
3939
{
4040
"cell_type": "code",
4141
"execution_count": null,
42-
"id": "738c9418",
42+
"id": "2",
4343
"metadata": {},
4444
"outputs": [],
4545
"source": [

0 commit comments

Comments
 (0)