Skip to content

Commit bd8d755

Browse files
committed
Поправлены версии для dependabot
1 parent 55a0cce commit bd8d755

5 files changed

Lines changed: 56 additions & 136 deletions

File tree

.github/workflows/ci-push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ jobs:
1616
name: "Tests"
1717
uses: ./.github/workflows/tests.yml
1818

19-
version-check:
20-
name: "Version Check"
21-
uses: ./.github/workflows/version-check.yml
19+
# version-check:
20+
# name: "Version Check"
21+
# uses: ./.github/workflows/version-check.yml
2222

2323
release:
2424
name: "Release"
25-
needs: [tests, version-check]
25+
needs: [tests]
2626
runs-on: ubuntu-latest
2727
env:
2828
VUH_VERSION: "v2.13.0"

.github/workflows/codeql.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: "CodeQL"
22

33
on:
4-
push:
5-
branches: [ master ]
64
pull_request:
75
branches: [ master ]
86
schedule:

.vscode/tasks.json

Lines changed: 10 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -5,50 +5,34 @@
55
"label": "docker:stop",
66
"type": "shell",
77
"command": "docker",
8-
"args": [
9-
"compose",
10-
"down",
11-
"-v"
12-
],
8+
"args": ["compose", "down", "-v"],
139
"problemMatcher": []
1410
},
1511
{
1612
"label": "docker:start",
1713
"type": "shell",
1814
"command": "docker",
19-
"args": [
20-
"compose",
21-
"up",
22-
"-d"
23-
],
15+
"args": ["compose", "up", "-d"],
2416
"problemMatcher": []
2517
},
2618
{
2719
"label": "docker:restart",
28-
"dependsOn": [
29-
"docker:stop",
30-
"docker:start"
31-
],
20+
"dependsOn": ["docker:stop", "docker:start"],
3221
"dependsOrder": "sequence",
3322
"problemMatcher": []
3423
},
3524
{
36-
"label": "uv:sync",
25+
"label": "uv:lock",
3726
"type": "shell",
3827
"command": "uv",
39-
"args": [
40-
"sync"
41-
],
28+
"args": ["lock"],
4229
"problemMatcher": []
4330
},
4431
{
4532
"label": "uv:update",
4633
"type": "shell",
4734
"command": "uv",
48-
"args": [
49-
"lock",
50-
"--upgrade"
51-
],
35+
"args": ["sync"],
5236
"problemMatcher": []
5337
},
5438
{
@@ -90,54 +74,31 @@
9074
"label": "tox:test",
9175
"type": "shell",
9276
"command": "uv",
93-
"args": [
94-
"run",
95-
"--with",
96-
"tox",
97-
"tox",
98-
"-p",
99-
"auto"
100-
],
77+
"args": ["run", "--with", "tox", "tox", "-p", "auto"],
10178
"group": "test",
10279
"problemMatcher": []
10380
},
10481
{
10582
"label": "lint:ruff",
10683
"type": "shell",
10784
"command": "uv",
108-
"args": [
109-
"run",
110-
"ruff",
111-
"check",
112-
"."
113-
],
85+
"args": ["run", "ruff", "check", "."],
11486
"group": "test",
11587
"problemMatcher": []
11688
},
11789
{
11890
"label": "lint:ruff:fix",
11991
"type": "shell",
12092
"command": "uv",
121-
"args": [
122-
"run",
123-
"ruff",
124-
"check",
125-
".",
126-
"--fix"
127-
],
93+
"args": ["run", "ruff", "check", ".", "--fix"],
12894
"group": "test",
12995
"problemMatcher": []
13096
},
13197
{
13298
"label": "lint:pre-commit",
13399
"type": "shell",
134100
"command": "uv",
135-
"args": [
136-
"run",
137-
"pre-commit",
138-
"run",
139-
"--all-files"
140-
],
101+
"args": ["run", "pre-commit", "run", "--all-files"],
141102
"group": "test",
142103
"problemMatcher": []
143104
}

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,12 @@ dependencies = []
88

99
[project.optional-dependencies]
1010
httpx = [
11-
"httpx>=0.23.0",
11+
"httpx>=0.23.0,<0.24.0; python_version < '3.8'",
12+
"httpx>=0.28.1; python_version >= '3.13'",
1213
]
1314
requests = [
14-
"requests>=2.31.0",
15+
"requests>=2.31.0,<2.32.0; python_version < '3.8'",
16+
"requests>=2.32.0; python_version >= '3.8'"
1517
]
1618

1719
[dependency-groups]

0 commit comments

Comments
 (0)