Skip to content

Commit 3b42e5b

Browse files
authored
Pin the tensorflow version lower than 2.16 (#215)
1 parent effa1c1 commit 3b42e5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
5353
- name: Run notebook examples
5454
run: |
55-
pip install pytest-xdist nbmake matplotlib idx2numpy
55+
pip install pytest-xdist nbmake matplotlib idx2numpy "numpy<2"
5656
pytest --disable-warnings --nbmake examples/{models,readers}
5757
# Run tiledb-cloud in parallel
5858
if [[ "${{ secrets.TILEDB_API_TOKEN }}" != "" ]]; then

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import setuptools
22

3-
tensorflow = ["tensorflow>=2.6"]
3+
tensorflow = ["tensorflow>=2.6, <2.16.0"]
44
pytorch = ["torch>=1.11", "torchdata"]
55
sklearn = ["scikit-learn>=1.0"]
66
cloud = ["tiledb-cloud"]

0 commit comments

Comments
 (0)