Skip to content

Commit 3d92e24

Browse files
Migrate to uv & remove poetry (#420)
1 parent 659fe6e commit 3d92e24

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2022
-2801
lines changed

.dockerignore

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11
.git
22
.github
33
.dockerignore
4-
.idea
5-
codeStyleConfig.xml
64
CONTRIBUTING.md
75
Dockerfile
86
*.env
97
!.env
10-
poetry.lock
8+
uv.lock
119
pyproject.toml
1210
tests
11+
.gitlint
12+
.pre-commit-config.yaml
13+
.taplo.toml
14+
.yamlfmt.yaml
15+
.venv
16+
.python-version
17+
.hadolint.yaml

.github/dependabot.yaml

-30
This file was deleted.

.github/renovate.json

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"assignAutomerge": true,
4+
"configMigration": true,
5+
"dependencyDashboard": true,
6+
"dependencyDashboardAutoclose": true,
7+
"dependencyDashboardLabels": [
8+
"dependencies",
9+
"tracker"
10+
],
11+
"enabled": true,
12+
"enabledManagers": [
13+
"github-actions",
14+
"pep621",
15+
"pep723",
16+
"pre-commit",
17+
"dockerfile"
18+
],
19+
"extends": [
20+
"replacements:all",
21+
"workarounds:all"
22+
],
23+
"labels": [
24+
"dependencies"
25+
],
26+
"lockFileMaintenance": {
27+
"enabled": true
28+
},
29+
"packageRules": [
30+
{
31+
"groupName": "pep621",
32+
"matchManagers": [
33+
"pep621"
34+
]
35+
},
36+
{
37+
"groupName": "github-actions",
38+
"matchDatasources": [
39+
"github-tags"
40+
],
41+
"matchManagers": [
42+
"github-actions"
43+
]
44+
},
45+
{
46+
"groupName": "github-runners",
47+
"matchDatasources": [
48+
"github-runners"
49+
],
50+
"matchManagers": [
51+
"github-actions"
52+
]
53+
},
54+
{
55+
"groupName": "pre-commit",
56+
"matchManagers": [
57+
"pre-commit"
58+
]
59+
},
60+
{
61+
"description": "Update frquently changing pre-commit hooks on Tuesday mornings",
62+
"matchManagers": [
63+
"pre-commit"
64+
],
65+
"matchPackageNames": [
66+
"renovatebot/pre-commit-hooks",
67+
"astral-sh/uv-pre-commit",
68+
"astral-sh/ruff-pre-commit"
69+
],
70+
"schedule": [
71+
"* 3-8 * * 2"
72+
]
73+
}
74+
],
75+
"prHourlyLimit": 10,
76+
"pre-commit": {
77+
"enabled": true
78+
},
79+
"timezone": "Europe/London"
80+
}

0 commit comments

Comments
 (0)