Skip to content

Commit 494b9ed

Browse files
authored
Require networkx>=2.4 due to Python 3.9. (#109)
1 parent fdc94cb commit 494b9ed

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/changes.rst

+2
Original file line numberDiff line numberDiff 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

3739
0.0.14 - 2021-03-23

setup.cfg

+1-1
Original file line numberDiff line numberDiff 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

tox.ini

+1-1
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)