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
1 change: 1 addition & 0 deletions docs/source/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and
to {user}`felixschmitz` for the report! The feature is enabled by adding an
`attributes` field on `PNode` and `PProvisionalNode` that will be mandatory on custom
nodes in v0.6.0.
- {pull}`662` adds the `.pixi` folder to be ignored by default during the collection.

## 0.5.2 - 2024-12-19

Expand Down
2 changes: 1 addition & 1 deletion src/_pytask/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from pluggy import PluginManager


_IGNORED_FOLDERS: list[str] = [".git/*", ".venv/*"]
_IGNORED_FOLDERS: list[str] = [".git/*", ".venv/*", ".pixi/*"]


_IGNORED_FILES: list[str] = [
Expand Down
Loading