Skip to content

Releases: minwook-shin/f-scheduler

0.4.0

05 Oct 02:12
Compare
Choose a tag to compare

Release 0.4.0

Features

  • add graphlib library to check cycle in the scheduler
    • raise error if cycle is detected
from f_scheduler import DAG

dag = DAG(use_graphlib=True)

Full Changelog: 0.3.0...0.4.0

0.3.0

19 Apr 12:02
Compare
Choose a tag to compare

0.3.0

  • add repr method to operator classes

Full Changelog: 0.2.0...0.3.0

0.2.0

19 Apr 11:30
Compare
Choose a tag to compare

Release 0.2.0

Features

  • add update_task method to DAG class
    • update task parameters from Task instance

Full Changelog: 0.1.0...0.2.0

0.1.0

12 Mar 02:26
Compare
Choose a tag to compare

Release 0.1.0

Features

  • add clear, get_return_value, get_all_tasks method to DAG class
print(dag.get_return_value('iter_task'))
print(dag.get_all_tasks())
dag.clear()

pip install f-scheduler==0.1.0

Full Changelog: https://github.com/minwook-shin/f-scheduler/commits/0.1.0

0.0.1

11 Mar 14:00
4a05115
Compare
Choose a tag to compare

Release 0.0.1

Features

  • First release
    • add operator and module for function scheduling

pip install f-scheduler==0.0.1

Full Changelog: https://github.com/minwook-shin/f-scheduler/commits/0.0.1