Skip to content

Commit

Permalink
Add renovatebot configuration and define dependency versions (#39)
Browse files Browse the repository at this point in the history
* feat: add config for renovatebot

* chore: Explicitly define dependency versions
  • Loading branch information
promasu authored Jan 26, 2025
1 parent 805235f commit 5b15ec8
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ classifiers = [
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"reportlab",
"reportlab_qrcode"
"reportlab==4.2.5",
"reportlab_qrcode==0.1.6"
]
dynamic = ["version"]

Expand All @@ -44,8 +44,8 @@ local_scheme = "no-local-version"

[tool.hatch.envs.ci]
dependencies = [
"pylint",
"ruff",
"pylint==3.3.3",
"ruff==0.9.3",
]

[tool.hatch.envs.ci.scripts]
Expand Down
16 changes: 16 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
":semanticCommitTypeAll(update)"
],
"enabled": true,
"packageRules": [
{
"matchCategories": [
"python"
],
"enabled": true
}
]
}

0 comments on commit 5b15ec8

Please sign in to comment.