File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ all releases are available on `PyPI <https://pypi.org/project/pytask>`_ and
3232- :gh: `107 ` adds and new hook ``pytask_unconfigure `` which makes pytask return
3333 :func: `pdb.set_trace ` at the end of a session which allows to use ``breakpoint() ``
3434 inside test functions using pytask.
35+ - :gh: `109 ` makes pytask require networkx>=2.4 since previous versions fail with Python
36+ 3.9.
3537
3638
37390.0.14 - 2021-03-23
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ install_requires =
3737 attrs>=17.4.0
3838 click
3939 click-default-group
40- networkx
40+ networkx>=2.4
4141 pluggy
4242 pony>=0.7.13
4343 rich
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ conda_deps =
2121 attrs
2222 click
2323 click-default-group
24- networkx
24+ networkx>=2.4
2525 pluggy
2626 pony >= 0.7.13
2727 rich
You can’t perform that action at this time.
0 commit comments