Skip to content

Commit

Permalink
Bump cookiecutter template to 15dd51 (#58)
Browse files Browse the repository at this point in the history
# Changes

- bumped cookiecutter template to
robert-koch-institut/mex-template@15dd51

# Conflicts

```diff a/pyproject.toml b/pyproject.toml	(rejected hunks)
@@ -9,15 +9,15 @@ urls = { Repository = "https://github.com/robert-koch-institut/mex-backend" }
 requires-python = "<3.13,>=3.11"
 dependencies = []
 optional-dependencies.dev = [
-    "black>=24.3.0",
-    "ipdb>=0.13.13",
-    "mypy>=1.9.0",
-    "pytest-cov>=4.1.0",
-    "pytest-random-order>=1.1.1",
-    "pytest-xdist>=3.5.0",
-    "pytest>=8.1.1",
-    "ruff>=0.3.5",
-    "sphinx>=7.2.6",
+    "black==24.3.0",
+    "ipdb==0.13.13",
+    "mypy==1.9.0",
+    "pytest-cov==4.1.0",
+    "pytest-random-order==1.1.1",
+    "pytest-xdist==3.5.0",
+    "pytest==8.1.1",
+    "ruff==0.3.5",
+    "sphinx==7.2.6",
 ]
 
 [project.scripts]
```
  • Loading branch information
RKIMetadataExchange authored May 8, 2024
1 parent 81f6316 commit bd98105
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 22 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"template": "https://github.com/robert-koch-institut/mex-template",
"commit": "dc196567aef9758916e248054388083285806c95",
"commit": "15dd517e9d8aebb087e1f0387cf726a8164e7913",
"checkout": null,
"context": {
"cookiecutter": {
Expand Down
20 changes: 0 additions & 20 deletions .github/dependabot.yml

This file was deleted.

28 changes: 28 additions & 0 deletions .github/workflows/renovatebot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Renovate

on:
push:
branches: ["main"]
schedule:
# * is a special character in YAML so you have to quote this string
- cron: "14 3 * * 1-5"
workflow_dispatch:

jobs:
renovate:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Run renovatebot
uses: renovatebot/github-action@v40.1.9
env:
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.GPG_SIGNING_KEY }}
RENOVATE_REPOSITORIES: "robert-koch-institut/mex-backend"
with:
configurationFile: renovate.json
token: ${{ secrets.WORKFLOW_TOKEN }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -137,5 +137,5 @@ known-first-party = ["mex", "tests"]
convention = "google"

[build-system]
requires = ["pdm-backend>=2.1.8"]
requires = ["pdm-backend==2.1.8"]
build-backend = "pdm.backend"
30 changes: 30 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"enabledManagers": [
"github-actions",
"html",
"npm",
"pep621",
"pip_requirements"
],
"gitAuthor": "RKIMetadataExchange <mex@rki.de>",
"lockFileMaintenance": {
"enabled": true,
"schedule": [
"before 4am on monday"
]
},
"packageRules": [
{
"matchUpdateTypes": [
"digest",
"lockFileMaintenance",
"major",
"minor",
"patch",
"pin"
],
"minimumReleaseAge": "7 days"
}
]
}

0 comments on commit bd98105

Please sign in to comment.