Aiida-workgraph

Latest version: v0.5.0

Safety actively analyzes 720904 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 1 of 9

0.5.0

What's Changed
* Small fix in the doc by mikibonacci in https://github.com/aiidateam/aiida-workgraph/pull/394
* Fix PythonJob need `aiida_workgraph` on remote computer by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/396
* De-serialize safe by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/400
* Migrate workgraph data from `base.extras` to `base.attributes` by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/410
* `WorkGraph` task with proper sub-tasks by GeigerJ2 in https://github.com/aiidateam/aiida-workgraph/pull/411
* Add `__repr__` and `__str__` to WG by GeigerJ2 in https://github.com/aiidateam/aiida-workgraph/pull/418
* Save pickled data as an `updatable` attribute by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/412
* Refactor the `decorator.py` using `TaskFactory` by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/420
* Refactor task manager by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/421
* Add logic instruction: `if_` and `while_` by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/409
* Use EntryPointPool by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/422
* Refactor If_ and While_ using BaseFlowBlock, fix task zone handling by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/423
* Fix PythonJob deserializer by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/424
* Add Map tasks by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/426
* Enhancing `WorkGraphEngine` Execution in `aiida-workgraph` by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/428
* Add schema by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/429
* Fix the function outputs of PythonJob by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/430
* Add map info to the attribute by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/431
* Support dynamic inputs by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/434
* Fix PythonJob inputs by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/435
* Add feature to create Task from AiiDA ProcessBuilder by GeigerJ2 in https://github.com/aiidateam/aiida-workgraph/pull/432
* Add graph manager and task wrapper by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/437
* Implements context namespace with accessor for syntactic sugar by agoscinski in https://github.com/aiidateam/aiida-workgraph/pull/433
* Add `graph` attribute to Task: by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/440
* Fix link limit for the calcfunction task by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/441
* Check task's parent is None before adding it as child by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/442
* Rename TaskCollection to TaskSet by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/443
* Drop usage of {{}} and remove str type in property by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/444
* Fix imported pythonjob task by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/446
* Improved makefile for docs build by GeigerJ2 in https://github.com/aiidateam/aiida-workgraph/pull/416
* Update quick start by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/447
* Add `shold_serialize` key by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/449
* Do not de-serialize data when loading PytohnJob task by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/451
* Remove execution count and while workgraph type by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/452

New Contributors
* mikibonacci made their first contribution in https://github.com/aiidateam/aiida-workgraph/pull/394

**Full Changelog**: https://github.com/aiidateam/aiida-workgraph/compare/v0.4.10...v0.5.0

0.5.0a6

0.5.0a5

What's Changed
* Add feature to create Task from AiiDA ProcessBuilder by GeigerJ2 in https://github.com/aiidateam/aiida-workgraph/pull/432
* Add graph manager and task wrapper by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/437
* Implements context namespace by agoscinski in https://github.com/aiidateam/aiida-workgraph/pull/433
* Add `graph` attribute to Task: by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/440


**Full Changelog**: https://github.com/aiidateam/aiida-workgraph/compare/v0.5.0a4...v0.5.0a5

0.5.0a4

What's Changed
* Fix the function outputs of PythonJob by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/430
* Add map info to the attribute by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/431
* Support dynamic inputs by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/434
* Fix PythonJob inputs by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/435


**Full Changelog**: https://github.com/aiidateam/aiida-workgraph/compare/v0.5.0a3...v0.5.0a4

0.5.0a3

What's Changed
* Add `Map` zone and `map_` instruction by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/426
* Use `WorkGraph` object inside the engine by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/428
* Add schema by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/429


**Full Changelog**: https://github.com/aiidateam/aiida-workgraph/compare/v0.5.0a2...v0.5.0a3

0.5.0a2

What's Changed
* Refactor If_ and While_ using BaseFlowBlock, fix task zone handling by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/423
* Fix PythonJob deserializer by superstar54 in https://github.com/aiidateam/aiida-workgraph/pull/424


**Full Changelog**: https://github.com/aiidateam/aiida-workgraph/compare/v0.5.0a1...v0.5.0a2

Page 1 of 9

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.