Skip to content

Commit 582a704

Browse files
committed
👷: Remove entry point for mkdocs.plugins and add Dependabot configuration for dependency updates
1 parent 5aa8a0c commit 582a704

File tree

2 files changed

+34
-3
lines changed

2 files changed

+34
-3
lines changed

.github/dependabot.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
version: 2
2+
updates:
3+
# Python dependencies
4+
- package-ecosystem: "pip"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
groups:
9+
dependencies:
10+
patterns:
11+
- "*"
12+
open-pull-requests-limit: 10
13+
14+
# Node.js dependencies
15+
- package-ecosystem: "npm"
16+
directory: "/examples/nodejs"
17+
schedule:
18+
interval: "daily"
19+
groups:
20+
dependencies:
21+
patterns:
22+
- "*"
23+
open-pull-requests-limit: 10
24+
25+
# GitHub Actions
26+
- package-ecosystem: "github-actions"
27+
directory: "/"
28+
schedule:
29+
interval: "daily"
30+
groups:
31+
dependencies:
32+
patterns:
33+
- "*"
34+
open-pull-requests-limit: 10

pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,5 @@ warn_redundant_casts = true
5959
module = ["mkdocs.*","mkdocs_macros.*","jinja2.*","ruamel.*","pygments.*"]
6060
ignore_missing_imports = true
6161

62-
[project.entry-points."mkdocs.plugins"]
63-
"macros-utils" = "mkdocs_macros_utils:define_env"
64-
6562
[tool.pytest.ini_options]
6663
testpaths = ["tests/python"]

0 commit comments

Comments
 (0)