We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0b8033 commit 15ab61dCopy full SHA for 15ab61d
setup.cfg
@@ -27,9 +27,12 @@ classifiers =
27
install_requires =
28
lxml
29
networkx
30
- numpy
31
- tables
32
- typing; python_version<"3.5"
+ # tables 3.10+ support numpy2x, but no wheels are provided for py<3.10
+ numpy<2.0; python<"3.10"
+ 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"
36
natsort
37
38
packages = find:
0 commit comments