Skip to content

Commit 44ed5f0

Browse files
committed
Update.!
1 parent a57d364 commit 44ed5f0

10 files changed

+25
-27
lines changed

.pre-commit-config.yaml

-5
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,6 @@ 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
3126
rev: v0.3.3
3227
hooks:

pyproject.toml

+8-9
Original file line numberDiff line numberDiff line change
@@ -81,20 +81,18 @@ 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.
9896
"TCH", # ignore non-guarded type imports.
9997
# Others.
10098
"ANN101", # type annotating self
@@ -103,16 +101,17 @@ extend-ignore = [
103101
"COM812", # Comply with ruff-format.
104102
"ISC001", # Comply with ruff-format.
105103
]
104+
select = ["ALL"]
106105

107-
108-
[tool.ruff.per-file-ignores]
106+
[tool.ruff.lint.per-file-ignores]
109107
"tests/*" = ["D", "ANN", "PLR2004", "S101"]
110108

109+
[tool.ruff.lint.isort]
110+
force-single-line = true
111111

112-
[tool.ruff.pydocstyle]
112+
[tool.ruff.lint.pydocstyle]
113113
convention = "numpy"
114114

115-
116115
[tool.pytest.ini_options]
117116
# Do not add src since it messes with the loading of pytask-parallel as a plugin.
118117
testpaths = ["tests"]

src/pytask_parallel/build.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import click
66
from pytask import EnumChoice
77
from pytask import hookimpl
8+
89
from pytask_parallel.backends import PARALLEL_BACKENDS_DEFAULT
910
from pytask_parallel.backends import ParallelBackend
1011

src/pytask_parallel/config.py

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from typing import Any
88

99
from pytask import hookimpl
10+
1011
from pytask_parallel.backends import ParallelBackend
1112

1213

src/pytask_parallel/execute.py

+9-8
Original file line numberDiff line numberDiff line change
@@ -17,29 +17,30 @@
1717
import cloudpickle
1818
from attrs import define
1919
from attrs import field
20-
from pytask import console
2120
from pytask import ExecutionReport
22-
from pytask import get_marks
23-
from pytask import hookimpl
2421
from pytask import Mark
25-
from pytask import parse_warning_filter
2622
from pytask import PNode
2723
from pytask import PTask
2824
from pytask import PythonNode
29-
from pytask import remove_internal_traceback_frames_from_exc_info
3025
from pytask import Session
3126
from pytask import Task
32-
from pytask import warning_record_to_str
3327
from pytask import WarningReport
28+
from pytask import console
29+
from pytask import get_marks
30+
from pytask import hookimpl
31+
from pytask import parse_warning_filter
32+
from pytask import remove_internal_traceback_frames_from_exc_info
33+
from pytask import warning_record_to_str
3434
from pytask.tree_util import PyTree
3535
from pytask.tree_util import tree_leaves
3636
from pytask.tree_util import tree_map
3737
from pytask.tree_util import tree_structure
38-
from pytask_parallel.backends import PARALLEL_BACKENDS
39-
from pytask_parallel.backends import ParallelBackend
4038
from rich.console import ConsoleOptions
4139
from rich.traceback import Traceback
4240

41+
from pytask_parallel.backends import PARALLEL_BACKENDS
42+
from pytask_parallel.backends import ParallelBackend
43+
4344

4445
@hookimpl
4546
def pytask_post_parse(config: dict[str, Any]) -> None:

src/pytask_parallel/logging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
from __future__ import annotations
44

5+
from pytask import Session
56
from pytask import console
67
from pytask import hookimpl
7-
from pytask import Session
88

99

1010
@hookimpl(trylast=True)

src/pytask_parallel/plugin.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
from pluggy import PluginManager
66
from pytask import hookimpl
7+
78
from pytask_parallel import build
89
from pytask_parallel import config
910
from pytask_parallel import execute

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

0 commit comments

Comments
 (0)