Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pre-commit.ci] pre-commit autoupdate #556

Merged
merged 3 commits into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ repos:
hooks:
- id: sort-all
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.1.14
rev: v0.2.0
hooks:
- id: ruff-format
- id: ruff
args: [--unsafe-fixes]
- repo: https://github.com/dosisod/refurb
rev: v1.27.0
rev: v1.28.0
hooks:
- id: refurb
args: [--ignore, FURB126]
Expand Down Expand Up @@ -96,9 +96,8 @@ repos:
- id: nbqa-isort
- id: nbqa-mypy
args: [--ignore-missing-imports]
- id: nbqa-ruff
- repo: https://github.com/kynan/nbstripout
rev: 0.6.1
rev: 0.6.2
hooks:
- id: nbstripout
exclude: (docs)
Expand Down
6 changes: 2 additions & 4 deletions docs/source/reference_guides/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,7 @@ For example:

```python
@pytask.mark.timeout(10, "slow", method="thread")
def task_function():
...
def task_function(): ...
```

Will create and attach a {class}`Mark <pytask.Mark>` object to the collected
Expand All @@ -154,8 +153,7 @@ Example for using multiple custom markers:
```python
@pytask.mark.timeout(10, "slow", method="thread")
@pytask.mark.slow
def task_function():
...
def task_function(): ...
```

### Classes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -268,8 +268,7 @@ the {func}`@task <pytask.task>` decorator to pass keyword arguments to the task.
for id_, kwargs in ID_TO_KWARGS.items():

@task(id=id_, kwargs=kwargs)
def task_create_random_data(seed, produces):
...
def task_create_random_data(seed, produces): ...
```

Writing a function that creates `ID_TO_KWARGS` would be even more pythonic.
Expand All @@ -289,8 +288,7 @@ ID_TO_KWARGS = create_parametrization()
for id_, kwargs in ID_TO_KWARGS.items():

@task(id=id_, kwargs=kwargs)
def task_create_random_data(i, produces):
...
def task_create_random_data(i, produces): ...
```

The {doc}`best-practices guide on parametrizations <../how_to_guides/bp_scaling_tasks>`
Expand Down
3 changes: 1 addition & 2 deletions docs/source/tutorials/selecting_tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,7 @@ from pytask import task
for i in range(2):

@task
def task_parametrized(i=i):
...
def task_parametrized(i=i): ...
```

To run the task where `i = 1`, run this command.
Expand Down
5 changes: 3 additions & 2 deletions docs/source/tutorials/skipping_tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,9 @@ from config import NO_LONG_RUNNING_TASKS


@pytask.mark.skipif(NO_LONG_RUNNING_TASKS, reason="Skip long-running tasks.")
def task_that_takes_really_long_to_run(path: Path = Path("time_intensive_product.pkl")):
...
def task_that_takes_really_long_to_run(
path: Path = Path("time_intensive_product.pkl"),
): ...
```

## Further reading
Expand Down
6 changes: 2 additions & 4 deletions docs/source/tutorials/write_a_task.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,16 +117,14 @@ from pytask import task


@task
def create_random_data():
...
def create_random_data(): ...


# The id will be ".../task_data_preparation.py::create_data".


@task(name="create_data")
def create_random_data():
...
def create_random_data(): ...
```

## Customize task module names
Expand Down
2 changes: 1 addition & 1 deletion docs_src/how_to_guides/bp_scaling_tasks_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ def task_prepare_data(
path_to_processed_data: Annotated[Path, Product],
) -> None:
df = pd.read_csv(path_to_input_data)
...
# ... transform the data.
subset = df.loc[df["subset"].eq(subset)]
subset.to_pickle(path_to_processed_data)
2 changes: 1 addition & 1 deletion docs_src/tutorials/using_a_data_catalog_5_py310.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ def task_transform_csv(
node: Annotated[PickleNode, Product] = data_catalog["transformed_csv"],
) -> None:
df = pd.read_csv(path)
...
# ... transform the data.
node.save(df)
2 changes: 1 addition & 1 deletion docs_src/tutorials/using_a_data_catalog_5_py310_return.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ def task_transform_csv(
path: Annotated[Path, data_catalog["csv"]],
) -> Annotated[pd.DataFrame, data_catalog["transformed_csv"]]:
df = pd.read_csv(path)
...
# ... transform the data
return df
2 changes: 1 addition & 1 deletion docs_src/tutorials/using_a_data_catalog_5_py38.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ def task_transform_csv(
node: Annotated[PickleNode, Product] = data_catalog["transformed_csv"],
) -> None:
df = pd.read_csv(path)
...
# ... transform the data
node.save(df)
10 changes: 7 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,11 @@ namespaces = false

[tool.ruff]
target-version = "py38"
select = ["ALL"]
fix = true
extend-include = ["*.ipynb"]

[tool.ruff.lint]
select = ["ALL"]
ignore = [
"FBT", # flake8-boolean-trap
"I", # ignore isort
Expand All @@ -125,7 +128,7 @@ ignore = [
]


[tool.ruff.per-file-ignores]
[tool.ruff.lint.per-file-ignores]
"src/_pytask/_hashlib.py" = ["ALL"]
"src/_pytask/capture.py" = ["PGH003"]
"src/_pytask/hookspecs.py" = ["ARG001"]
Expand All @@ -141,9 +144,10 @@ ignore = [
"docs/source/how_to_guides/functional_interface*" = ["B018", "D", "INP", "ARG005"]
"docs_src/how_to_guides/using_task_returns_*_task.py" = ["ARG005", "E731"]
"docs_src/how_to_guides/writing_custom_nodes_*.py" = ["S301"]
"docs_src/tutorials/using_a_data_catalog_*.py" = ["RET504"]


[tool.ruff.pydocstyle]
[tool.ruff.lint.pydocstyle]
convention = "numpy"

[tool.pytest.ini_options]
Expand Down