Skip to content

Commit e97a9bb

Browse files
authored
docs: prepare for 0.6.0, improve landing page and little errors (#875)
1 parent 46a45d9 commit e97a9bb

33 files changed

Lines changed: 67 additions & 76 deletions

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ chronological order. Releases follow [semantic versioning](https://semver.org/)
55
releases are available on [PyPI](https://pypi.org/project/pytask) and
66
[Anaconda.org](https://anaconda.org/conda-forge/pytask).
77

8-
## Unreleased
8+
## 0.6.0 - 2026-05-01
99

10+
- [#875](https://github.com/pytask-dev/pytask/pull/875) improves the documentation
11+
homepage cards by making the full tile clickable and fixes the plugin list warning
12+
admonition formatting.
1013
- [#874](https://github.com/pytask-dev/pytask/pull/874) improves the lockfile
1114
documentation by restructuring related guides around user workflows and introducing
1215
`pytask.lock` in the tutorials.

docs/source/_static/css/custom.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,16 @@
33
}
44

55
.home-card-grid li {
6+
position: relative;
67
text-align: center;
78
}
89

10+
.home-card-grid li .home-card-title::after {
11+
position: absolute;
12+
inset: 0;
13+
content: "";
14+
}
15+
916
.home-card-icon {
1017
display: block;
1118
margin: 0 auto 0.75rem;

docs/source/_static/md/capture.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ pytask
66
────────────────────────── Start pytask session ─────────────────────────
7-
Platform: win32 -- Python 3.12.0, pytask 0.5.3, pluggy 1.3.0
7+
Platform: win32 -- Python 3.13.0, pytask 0.6.0, pluggy 1.3.0
88
Root: C:\Users\pytask-dev\git\my_project
99
Collected 2 tasks.
1010

docs/source/_static/md/clean-dry-run-directories.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ pytask clean --directories
66
────────────────────────── Start pytask session ─────────────────────────
7-
Platform: win32 -- Python 3.12.0, pytask 0.5.3, pluggy 1.3.0
7+
Platform: win32 -- Python 3.13.0, pytask 0.6.0, pluggy 1.3.0
88
Root: C:\Users\pytask-dev\git\my_project
99
Collected 1 task.
1010

docs/source/_static/md/clean-dry-run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ pytask clean
66
────────────────────────── Start pytask session ─────────────────────────
7-
Platform: win32 -- Python 3.12.0, pytask 0.5.3, pluggy 1.3.0
7+
Platform: win32 -- Python 3.13.0, pytask 0.6.0, pluggy 1.3.0
88
Root: C:\Users\pytask-dev\git\my_project
99
Collected 1 task.
1010

docs/source/_static/md/collect-nodes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ pytask
66
────────────────────────── Start pytask session ─────────────────────────
7-
Platform: win32 -- Python 3.12.0, pytask 0.5.3, pluggy 1.3.0
7+
Platform: win32 -- Python 3.13.0, pytask 0.6.0, pluggy 1.3.0
88
Root: C:\Users\pytask-dev\git\my_project
99
Collected 1 task.
1010

docs/source/_static/md/collect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ pytask
66
────────────────────────── Start pytask session ─────────────────────────
7-
Platform: win32 -- Python 3.12.0, pytask 0.5.3, pluggy 1.3.0
7+
Platform: win32 -- Python 3.13.0, pytask 0.6.0, pluggy 1.3.0
88
Root: C:\Users\pytask-dev\git\my_project
99
Collected 1 task.
1010

docs/source/_static/md/defining-dependencies-products.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ pytask
66
────────────────────────── Start pytask session ─────────────────────────
7-
Platform: win32 -- Python 3.12.0, pytask 0.5.3, pluggy 1.3.0
7+
Platform: win32 -- Python 3.13.0, pytask 0.6.0, pluggy 1.3.0
88
Root: C:\Users\pytask-dev\git\my_project
99
Collected 2 task.
1010

docs/source/_static/md/dry-run.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ pytask --dry-run
66
────────────────────────── Start pytask session ─────────────────────────
7-
Platform: win32 -- Python 3.12.0, pytask 0.5.3, pluggy 1.3.0
7+
Platform: win32 -- Python 3.13.0, pytask 0.6.0, pluggy 1.3.0
88
Root: C:\Users\pytask-dev\git\my_project
99
Collected 1 task.
1010

docs/source/_static/md/explain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
$ pytask --explain
66
────────────────────────── Start pytask session ─────────────────────────
7-
Platform: darwin -- Python 3.12.0, pytask 0.5.6, pluggy 1.6.0
7+
Platform: darwin -- Python 3.13.0, pytask 0.6.0, pluggy 1.6.0
88
Root: /Users/pytask-dev/git/my_project
99
Collected 3 tasks.
1010

0 commit comments

Comments
 (0)