Skip to content

Commit 55faebd

Browse files
committed
Fix docs and other mentions.
1 parent 28ecff9 commit 55faebd

13 files changed

+50
-40
lines changed

.github/workflows/update-plugin-list.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Python
2727
uses: actions/setup-python@v5
2828
with:
29-
python-version: 3.8
29+
python-version: 3.12
3030

3131
- name: Install dependencies
3232
run: |

docs/source/how_to_guides/using_task_returns.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ defines where the return of the function, a string, should be stored.
2626
2727
````
2828
29-
````{tab-item} Python 3.8+
29+
````{tab-item} Python 3.9
3030
:sync: python38plus
3131
3232
```{literalinclude} ../../../docs_src/how_to_guides/using_task_returns_example_1_py38.py
@@ -68,7 +68,7 @@ of the previous interfaces.
6868
6969
````
7070
71-
````{tab-item} Python 3.8+
71+
````{tab-item} Python 3.9
7272
:sync: python38plus
7373
7474
```{literalinclude} ../../../docs_src/how_to_guides/using_task_returns_example_3_py38.py
@@ -103,7 +103,7 @@ mapped to the defined nodes.
103103
104104
````
105105
106-
````{tab-item} Python 3.8+
106+
````{tab-item} Python 3.9
107107
:sync: python38plus
108108
109109
```{literalinclude} ../../../docs_src/how_to_guides/using_task_returns_example_4_py38.py

docs/source/how_to_guides/writing_custom_nodes.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ The result will be the following task.
4242
4343
````
4444
45-
````{tab-item} Python 3.8+
45+
````{tab-item} Python 3.9
4646
:sync: python38plus
4747
4848
```{literalinclude} ../../../docs_src/how_to_guides/writing_custom_nodes_example_2_py38.py
4949
```
5050
5151
````
5252
53-
````{tab-item} Python 3.8+ & Return
53+
````{tab-item} Python 3.9 & Return
5454
:sync: python38plus
5555
5656
```{literalinclude} ../../../docs_src/how_to_guides/writing_custom_nodes_example_2_py38_return.py
@@ -87,7 +87,7 @@ we arrive at the following class.
8787
8888
````
8989
90-
````{tab-item} Python 3.8+
90+
````{tab-item} Python 3.9
9191
:sync: python38plus
9292
9393
```{literalinclude} ../../../docs_src/how_to_guides/writing_custom_nodes_example_3_py38.py
@@ -142,9 +142,9 @@ databases. [^kedro]
142142

143143
## References
144144

145-
[^structural-subtyping]: Structural subtyping is similar to ABCs an approach in Python to enforce interfaces, but
146-
it can be considered more pythonic since it is closer to duck typing. Hynek Schlawack
147-
wrote a comprehensive
145+
[^structural-subtyping]: Structural subtyping is similar to ABCs an approach in Python to enforce interfaces,
146+
but it can be considered more pythonic since it is closer to duck typing. Hynek
147+
Schlawack wrote a comprehensive
148148
[guide on subclassing](https://hynek.me/articles/python-subclassing-redux/) that
149149
features protocols under "Type 2". Glyph wrote an introduction to protocols called
150150
[I want a new duck](https://glyph.twistedmatrix.com/2020/07/new-duck.html).

docs/source/tutorials/defining_dependencies_products.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Defining dependencies and products also serves another purpose. By analyzing the
66
pytask determines the order to run the tasks.
77

88
This tutorial offers you different interfaces. If you are comfortable with type
9-
annotations or are not afraid to try them, look at the `Python 3.10+` or `3.8+` tabs.
10-
You find a tutorial on type hints {doc}`here <../type_hints>`.
9+
annotations or are not afraid to try them, look at the `Python 3.10+` or `3.9` tabs. You
10+
find a tutorial on type hints {doc}`here <../type_hints>`.
1111

1212
If you want to avoid type annotations for now, look at the tab named `produces`.
1313

@@ -60,7 +60,7 @@ task has finished, pytask will check whether the file exists.
6060
6161
````
6262
63-
````{tab-item} Python 3.8+
63+
````{tab-item} Python 3.9
6464
:sync: python38plus
6565
6666
```{literalinclude} ../../../docs_src/tutorials/defining_dependencies_products_products_py38.py
@@ -117,7 +117,7 @@ annotation are dependencies of the task.
117117
118118
````
119119
120-
````{tab-item} Python 3.8+
120+
````{tab-item} Python 3.9
121121
:sync: python38plus
122122
123123
To specify that the task relies on the data set `data.pkl`, you can add the path
@@ -169,7 +169,7 @@ are assumed to point to a location relative to the task module.
169169
170170
````
171171
172-
````{tab-item} Python 3.8+
172+
````{tab-item} Python 3.9
173173
:sync: python38plus
174174
175175
```{literalinclude} ../../../docs_src/tutorials/defining_dependencies_products_relative_py38.py
@@ -209,7 +209,7 @@ structures if needed.
209209
210210
````
211211
212-
````{tab-item} Python 3.8+
212+
````{tab-item} Python 3.9
213213
:sync: python38plus
214214
215215
```{literalinclude} ../../../docs_src/tutorials/defining_dependencies_products_multiple1_py38.py

docs/source/tutorials/repeating_tasks_with_different_inputs.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ different seeds and output paths as default arguments of the function.
2121
2222
````
2323
24-
````{tab-item} Python 3.8+
24+
````{tab-item} Python 3.9
2525
:sync: python38plus
2626
2727
```{literalinclude} ../../../docs_src/tutorials/repeating_tasks_with_different_inputs1_py38.py
@@ -57,7 +57,7 @@ You can also add dependencies to repeated tasks just like with any other task.
5757
5858
````
5959
60-
````{tab-item} Python 3.8+
60+
````{tab-item} Python 3.9
6161
:sync: python38plus
6262
6363
```{literalinclude} ../../../docs_src/tutorials/repeating_tasks_with_different_inputs2_py38.py
@@ -117,7 +117,7 @@ For example, the following function is parametrized with tuples.
117117
118118
````
119119
120-
````{tab-item} Python 3.8+
120+
````{tab-item} Python 3.9
121121
:sync: python38plus
122122
123123
```{literalinclude} ../../../docs_src/tutorials/repeating_tasks_with_different_inputs3_py38.py
@@ -158,7 +158,7 @@ a unique name for the iteration.
158158
159159
````
160160
161-
````{tab-item} Python 3.8+
161+
````{tab-item} Python 3.9
162162
:sync: python38plus
163163
164164
```{literalinclude} ../../../docs_src/tutorials/repeating_tasks_with_different_inputs4_py38.py
@@ -244,7 +244,7 @@ Following these three tips, the parametrization becomes
244244
245245
````
246246
247-
````{tab-item} Python 3.8+
247+
````{tab-item} Python 3.9
248248
:sync: python38plus
249249
250250
```{literalinclude} ../../../docs_src/tutorials/repeating_tasks_with_different_inputs5_py38.py

docs/source/tutorials/using_a_data_catalog.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ of our tasks. Here we see again the signature of the task function.
6363
```
6464
````
6565
66-
````{tab-item} Python 3.8+
66+
````{tab-item} Python 3.9
6767
:sync: python38plus
6868
6969
```{literalinclude} ../../../docs_src/tutorials/defining_dependencies_products_products_py38.py
@@ -107,7 +107,7 @@ Use `data_catalog["data"]` as an default argument to access the
107107
108108
````
109109
110-
````{tab-item} Python 3.8+
110+
````{tab-item} Python 3.9
111111
:sync: python38plus
112112
113113
Use `data_catalog["data"]` as an default argument to access the
@@ -167,7 +167,7 @@ Following one of the interfaces gives you immediate access to the
167167
168168
````
169169
170-
````{tab-item} Python 3.8+
170+
````{tab-item} Python 3.9
171171
:sync: python38plus
172172
173173
```{literalinclude} ../../../docs_src/tutorials/using_a_data_catalog_3_py38.py
@@ -241,7 +241,7 @@ different node types which is not relevant now.
241241
242242
````
243243
244-
````{tab-item} Python 3.8+
244+
````{tab-item} Python 3.9
245245
:sync: python38plus
246246
247247
```{literalinclude} ../../../docs_src/tutorials/using_a_data_catalog_5_py38.py

docs/source/tutorials/write_a_task.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ If you want to refresh your knowledge about type hints, read
6262
6363
````
6464
65-
````{tab-item} Python 3.8+
65+
````{tab-item} Python 3.9
6666
6767
The task accepts the argument `path` that points to the file where the data set will be
6868
stored. The path is passed to the task via the default value, `BLD / "data.pkl"`. To

pyproject.toml

+6-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ classifiers = [
1111
"Operating System :: Microsoft :: Windows",
1212
"Operating System :: POSIX",
1313
"Programming Language :: Python :: 3 :: Only",
14-
"Programming Language :: Python :: 3.8",
1514
"Programming Language :: Python :: 3.9",
1615
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1919
"Topic :: Scientific/Engineering",
2020
"Topic :: Software Development :: Build Tools",
2121
]
@@ -207,7 +207,11 @@ module = ["_pytask.hookspecs"]
207207
disable_error_code = ["empty-body"]
208208

209209
[tool.refurb]
210-
python_version = "3.8"
210+
python_version = "3.9"
211+
212+
[[tool.refurb.amend]]
213+
path = "src/_pytask/mark/structures.py"
214+
ignore = ["FURB173"]
211215

212216
[tool.coverage.report]
213217
exclude_also = [

src/_pytask/build.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,7 @@ def build( # noqa: C901, PLR0912, PLR0913
210210
"task_files": task_files,
211211
"trace": trace,
212212
"verbose": verbose,
213-
**kwargs,
214-
}
213+
} | kwargs
215214

216215
if "command" not in raw_config:
217216
pm = get_plugin_manager()

src/_pytask/config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ def is_file_system_case_sensitive() -> bool:
6565
def pytask_configure(pm: PluginManager, raw_config: dict[str, Any]) -> dict[str, Any]:
6666
"""Configure pytask."""
6767
# Add all values by default so that many plugins do not need to copy over values.
68-
config = {"pm": pm, "markers": {}, **raw_config}
69-
config["markers"] = parse_markers(config["markers"])
68+
config = {"pm": pm, "markers": {}} | raw_config
69+
config["markers"] = parse_markers(config["markers"]) # type: ignore[arg-type]
7070

7171
pm.hook.pytask_parse_config(config=config)
7272
pm.hook.pytask_post_parse(config=config)

src/_pytask/logging.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ def _format_plugin_names_and_versions(
104104
# Gets us name and version!
105105
name = f"{dist.project_name}-{dist.version}"
106106
# Questionable convenience, but it keeps things short.
107-
if name.startswith("pytask-"):
108-
name = name[7:]
107+
name = name.removeprefix("pytask-")
109108
# We decided to print python package names they can have more than one plugin.
110109
if name not in values:
111110
values.append(name)

src/_pytask/mark/structures.py

+13-5
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,22 @@
2020

2121
@define(frozen=True)
2222
class Mark:
23-
"""A class for a mark containing the name, positional and keyword arguments."""
23+
"""A class for a mark containing the name, positional and keyword arguments.
24+
25+
Attributes
26+
----------
27+
name
28+
Name of the mark.
29+
args
30+
Positional arguments of the mark decorator.
31+
kwargs
32+
Keyword arguments of the mark decorator.
33+
34+
"""
2435

2536
name: str
26-
"""str: Name of the mark."""
2737
args: tuple[Any, ...]
28-
"""Tuple[Any]: Positional arguments of the mark decorator."""
2938
kwargs: Mapping[str, Any]
30-
"""Mapping[str, Any]: Keyword arguments of the mark decorator."""
3139

3240
def combined_with(self, other: Mark) -> Mark:
3341
"""Return a new Mark which is a combination of this Mark and another Mark.
@@ -36,7 +44,7 @@ def combined_with(self, other: Mark) -> Mark:
3644
3745
Parameters
3846
----------
39-
other : pytask.mark.structures.Mark
47+
other
4048
The mark to combine with.
4149
4250
Returns

src/_pytask/task_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def _parse_task(task: Callable[..., Any]) -> tuple[str, Callable[..., Any]]:
268268
parsed_kwargs = _parse_task_kwargs(meta.kwargs)
269269

270270
signature_kwargs = parse_keyword_arguments_from_signature_defaults(task)
271-
meta.kwargs = {**signature_kwargs, **parsed_kwargs}
271+
meta.kwargs = signature_kwargs | parsed_kwargs
272272

273273
return parsed_name, task
274274

0 commit comments

Comments
 (0)