Skip to content

Commit 15ab61d

Browse files
committed
feat(deps): setup deps for tables for py3.9
1 parent c0b8033 commit 15ab61d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

setup.cfg

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,12 @@ classifiers =
2727
install_requires =
2828
lxml
2929
networkx
30-
numpy
31-
tables
32-
typing; python_version<"3.5"
30+
# tables 3.10+ support numpy2x, but no wheels are provided for py<3.10
31+
numpy<2.0; python<"3.10"
32+
tables; python<"3.10"
33+
# for py>3.10, specify minimum tables version and let that choose appropriate numpy
34+
numpy; python>="3.10"
35+
tables>3.10; python>="3.10"
3336
natsort
3437

3538
packages = find:

0 commit comments

Comments
 (0)