-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
32 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
# Configuration file for Dependabot | ||
# Dependabot configuration for version updates | ||
# Specify package ecosystems and their respective locations for manifests. | ||
|
||
version: 2 | ||
|
||
# Define the package manager and its configuration | ||
updates: | ||
- package-ecosystem: "pip" # Use pip as the package manager | ||
directory: "requirements.txt" # Location of package manifests | ||
directory: "/" # Location of the directory containing package manifests | ||
schedule: | ||
interval: "daily" # Check for updates daily | ||
time: "02:00" # Perform updates at 2 AM UTC | ||
timezone: "UTC" # Use the UTC timezone for updates | ||
labels: "dependencies" # Optional: add a label to updates | ||
assignees: ["username"] # Optional: assign updates to a specific user | ||
labels: ["dependencies"] # Optional: add a label to updates | ||
assignees: ["username"] # Optional: assign updates to a specific user | ||
commit-message: | ||
prefix: "fix" # Optional: prefix for commit messages | ||
# Optional: specify dependencies to ignore for updates | ||
ignore: | ||
- dependency-name: "some-package" # Replace with the actual package name | ||
versions: ["<2.0.0"] # Specify version constraints to ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"workbench.editor.defaultBinaryEditor": "jupyter-notebook", | ||
"python.analysis.autoImportCompletions": true | ||
"python.analysis.autoImportCompletions": true, | ||
"cmake.useCMakePresets": "always" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.