Skip to content

Commit

Permalink
build: pin django-mptt dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
afuetterer committed Oct 20, 2023
1 parent bb5f093 commit 6a523e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ updates:
- dependencies
- python
- type:maintenance
ignore:
- dependency-name: django-mptt # pinned, 0.15 requires Python >= 3.9
- package-ecosystem: github-actions
directory: /
schedule:
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ dynamic = [
"version",
]
dependencies = [
# dependencies with major version on zero are declared with
# major.minor.patch, because they can potentially introduce breaking changes
# in minor version updates anytime
"defusedcsv~=2.0",
"defusedxml~=0.7.1",
"django~=4.2",
Expand All @@ -46,7 +49,7 @@ dependencies = [
"django-filter~=23.2",
"django-libsass~=0.9",
"django-mathfilters~=1.0",
"django-mptt~=0.14.0",
"django-mptt==0.14.0", # pinned, 0.15 requires Python >= 3.9
"django-rest-swagger~=2.2",
"django-settings-export~=1.2",
"django-split-settings~=1.2",
Expand Down

0 comments on commit 6a523e0

Please sign in to comment.