File tree 3 files changed +4
-2
lines changed
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
32
32
- :gh: `107 ` adds and new hook ``pytask_unconfigure `` which makes pytask return
33
33
:func: `pdb.set_trace ` at the end of a session which allows to use ``breakpoint() ``
34
34
inside test functions using pytask.
35
+ - :gh: `109 ` makes pytask require networkx>=2.4 since previous versions fail with Python
36
+ 3.9.
35
37
36
38
37
39
0.0.14 - 2021-03-23
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ install_requires =
37
37
attrs>=17.4.0
38
38
click
39
39
click-default-group
40
- networkx
40
+ networkx>=2.4
41
41
pluggy
42
42
pony>=0.7.13
43
43
rich
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ conda_deps =
21
21
attrs
22
22
click
23
23
click-default-group
24
- networkx
24
+ networkx>=2.4
25
25
pluggy
26
26
pony >= 0.7.13
27
27
rich
You can’t perform that action at this time.
0 commit comments