Skip to content

Entangled 2.1.6

Compare
Choose a tag to compare
@jhidding jhidding released this 17 Sep 07:25
· 7 commits to main since this release
  • Allow Yaml lists in task definitions. The following now works:
```python
#| file: test.py
#| classes: ["task"]
#| creates:
#|    - hello.txt

print("Hello", file=open("hello.txt", "w"))
```