Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

maint: Add dependency grouping #573

Merged
merged 7 commits into from
Aug 11, 2023
23 changes: 19 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,25 @@ updates:
labels:
- "maintenance"
- "dependencies"
ignore:
- dependency-name: "vtk"
- dependency-name: "grpcio"

groups:
general-dependencies:
patterns:
- "*"
exclude-patterns:
- "*sphinx*"
- "numpydoc"
- "pyvista*"
- "pytest*"
test-dependencies:
patterns:
- "pytest*"
doc-dependencies:
patterns:
- "*sphinx*"
- "numpydoc"
pyvista:
patterns:
- "pyvista*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
Expand Down
Loading