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 effa1c1 commit 3b42e5bCopy full SHA for 3b42e5b
.github/workflows/ci.yml
@@ -52,7 +52,7 @@ jobs:
52
53
- name: Run notebook examples
54
run: |
55
- pip install pytest-xdist nbmake matplotlib idx2numpy
+ pip install pytest-xdist nbmake matplotlib idx2numpy "numpy<2"
56
pytest --disable-warnings --nbmake examples/{models,readers}
57
# Run tiledb-cloud in parallel
58
if [[ "${{ secrets.TILEDB_API_TOKEN }}" != "" ]]; then
setup.py
@@ -1,6 +1,6 @@
1
import setuptools
2
3
-tensorflow = ["tensorflow>=2.6"]
+tensorflow = ["tensorflow>=2.6, <2.16.0"]
4
pytorch = ["torch>=1.11", "torchdata"]
5
sklearn = ["scikit-learn>=1.0"]
6
cloud = ["tiledb-cloud"]
0 commit comments