Skip to content

Commit 5b2e10f

Browse files
authored
Fix links in docs. (#310)
1 parent d440aec commit 5b2e10f

File tree

5 files changed

+4
-9
lines changed

5 files changed

+4
-9
lines changed

docs/source/how_to_guides/bp_structure_of_task_files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This section provides advice on how to structure task files.
1010
- A task function should be the first function in a task module.
1111

1212
:::{seealso}
13-
The only exception might be for {doc}`repititions <bp_scalable_repititions_of_tasks>`.
13+
The only exception might be for {doc}`repititions <bp_scalable_repetitions_of_tasks>`.
1414
:::
1515

1616
- The purpose of the task function is to handle IO operations like loading and saving

docs/source/how_to_guides/repeating_tasks_with_different_inputs_the_pytest_way.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ The process of repeating a function with different inputs is called parametrizat
1515

1616
:::{seealso}
1717
If you want to know more about best practices for parametrizations, check out this
18-
{doc}`guide <../how_to_guides/bp_scalable_repititions_of_tasks>` after you have made
18+
{doc}`guide <../how_to_guides/bp_scalable_repetitions_of_tasks>` after you have made
1919
yourself familiar with this tutorial.
2020
:::
2121

docs/source/tutorials/repeating_tasks_with_different_inputs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ for id_, kwargs in ID_TO_KWARGS.items():
162162
```
163163

164164
The
165-
{doc}`best-practices guide on parametrizations <../how_to_guides/bp_scalable_repititions_of_tasks>`
165+
{doc}`best-practices guide on parametrizations <../how_to_guides/bp_scalable_repetitions_of_tasks>`
166166
goes into even more detail on how to scale parametrizations.
167167

168168
## A warning on globals

environment.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,6 @@ dependencies:
1010
- setuptools_scm
1111
- toml
1212

13-
# Conda
14-
- anaconda-client
15-
- conda-build
16-
- conda-verify
17-
1813
# Package dependencies
1914
- attrs >=19.2.0
2015
- click

src/_pytask/parametrize.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def pytask_parametrize_task(
9595
"@pytask.mark.parametrize.\n\nFor improved readability, consider to "
9696
"move the creation of inputs into its own function as shown in the "
9797
"best-practices guide on parametrizations: https://pytask-dev.rtfd.io/"
98-
"en/stable/how_to_guides/bp_scalable_repititions_of_tasks.html."
98+
"en/stable/how_to_guides/bp_scalable_repetitions_of_tasks.html."
9999
)
100100

101101
base_arg_names, arg_names, arg_values = _parse_parametrize_markers(

0 commit comments

Comments
 (0)