We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c3b3d9 commit 53d520cCopy full SHA for 53d520c
2 files changed
docs/source/changes.md
@@ -10,6 +10,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
10
- {pull}`676` ensures compatibility with click >8.2.0.
11
- {pull}`680` uses uv everywhere.
12
- {pull}`684` adds tests for lowest and highest dependency resolutions.
13
+- {pull}`685` fixes the file urls in task and node names.
14
15
## 0.5.3 - 2025-05-16
16
src/_pytask/console.py
@@ -82,7 +82,7 @@
82
83
_EDITOR_URL_SCHEMES: dict[str, str] = {
84
"no_link": "",
85
- "file": "file:///{path}",
+ "file": "file://{path}",
86
"vscode": "vscode://file/{path}:{line_number}",
87
"pycharm": "pycharm://open?file={path}&line={line_number}",
88
}
0 commit comments