Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
version: 2
updates:
- package-ecosystem: "pip"
directory: "/requirements"
schedule:
interval: "daily"
open-pull-requests-limit: 10
labels:
- "dependencies"

- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 10
labels:
- "dependencies"
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,7 @@ jobs:

- name: Install dependencies
run: |
pip install numpy
pip install ml_dtypes
pip install pytest
pip install torch --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements/ci.txt --index-url https://download.pytorch.org/whl/cpu

- name: Build nanobind extension
run: pip install .
Expand Down Expand Up @@ -103,10 +100,7 @@ jobs:

- name: Install dependencies
run: |
pip install numpy
pip install ml_dtypes
pip install pytest
pip install torch --index-url https://download.pytorch.org/whl/cpu
pip install -r requirements/ci.txt --index-url https://download.pytorch.org/whl/cpu

- name: Build nanobind extension
run: pip install .
Expand Down
6 changes: 6 additions & 0 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# CI Python dependencies for simpler.
# Keep upper bounds here; Dependabot updates this file.
numpy<=2.0.2
ml_dtypes<=0.5.1
pytest<=8.3.5
torch<=2.6.0
Loading