We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a48bd3 commit 90a9455Copy full SHA for 90a9455
setup.py
@@ -313,12 +313,17 @@ def get_long_description():
313
"traitsui",
314
],
315
"h5": [
316
- "numpy",
+ # For Python earlier than 3.10, the most recent version of
317
+ # PyTables is incompatible with NumPy 2.x.
318
+ # xref: https://github.com/enthought/apptools/issues/345
319
+ "numpy < 2.0; python_version<'3.10'",
320
+ "numpy; python_version>='3.10'",
321
"pandas",
322
"tables",
323
324
"persistence": [
325
326
327
328
"preferences": [
329
"configobj",
0 commit comments