Skip to content
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ chronological order. Releases follow [semantic versioning](https://semver.org/)
releases are available on [PyPI](https://pypi.org/project/pytask) and
[Anaconda.org](https://anaconda.org/conda-forge/pytask).

## 0.5.5 - 2025-07-25

- {pull}`692` documents how to use pytask with workspaces.
- {pull}`694` fixes {issue}`693` so that missing dependencies are detected in some cases. Thanks to {user}`timmens` for the report!

## 0.5.4 - 2025-06-08

- {pull}`676` ensures compatibility with click >8.2.0.
Expand Down
1 change: 0 additions & 1 deletion src/_pytask/execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,6 @@ def pytask_execute_task_setup(session: Session, task: PTask) -> None: # noqa: C
has_changed = has_node_changed(task=task, node=node, state=node_state)
if has_changed:
needs_to_be_executed = True
break

if not needs_to_be_executed:
collect_provisional_products(session, task)
Expand Down
3 changes: 3 additions & 0 deletions tests/test_execute.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,9 @@ def task2() -> None: pass
assert result.exit_code == ExitCode.OK


@pytest.mark.xfail(
sys.platform == "linux" and sys.version_info[:2] == (3, 9), reason="flakey"
)
def test_pytask_on_a_module_that_uses_the_functional_api(tmp_path):
source = """
from pytask import task, ExitCode, build
Expand Down
Loading