Skip to content

Commit 35056b1

Browse files
authored
Merge branch 'main' into api_versioning_resolution
2 parents 9e09fb2 + 651308a commit 35056b1

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
publish:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
- name: Set up Python
1414
uses: actions/setup-python@v6
1515
with:

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- name: Set up Python
1515
uses: actions/setup-python@v6
1616
with:
@@ -22,4 +22,4 @@ jobs:
2222
- name: Test
2323
run: make test-cov
2424
- name: Coverage
25-
uses: codecov/[email protected].1
25+
uses: codecov/[email protected].2

.github/workflows/test_full.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1414
steps:
15-
- uses: actions/checkout@v5
15+
- uses: actions/checkout@v6
1616
- name: Set up Python
1717
uses: actions/setup-python@v6
1818
with:
@@ -27,7 +27,7 @@ jobs:
2727
codestyle:
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v5
30+
- uses: actions/checkout@v6
3131
- name: Set up Python
3232
uses: actions/setup-python@v6
3333
with:

requirements-tests.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ bcrypt; python_version >= '3.9'
66
click >= 8.1.7,<9.0.0,
77
email_validator >=1.1.1
88
itsdangerous >=1.1.0,<3.0.0
9-
mypy == 1.18.2
9+
mypy == 1.19.1
1010
orjson >= 3.2.1
1111
pytest >= 6.2.4,< 9.0.0
1212
pytest-asyncio
1313
pytest-cov >= 2.12.0,< 8.0.0
1414
python-multipart >= 0.0.5
1515
python-socketio==5.16.0
1616
regex==2025.9.18
17-
ruff ==0.14.3
17+
ruff ==0.14.7
1818
types-dataclasses ==0.6.6
1919
types-orjson ==3.6.2
2020
types-redis ==4.6.0.20241004
2121
# types
2222
types-ujson ==5.10.0.20250822
2323
ujson >= 4.0.1
24-
uvicorn[standard] >= 0.38.0
24+
uvicorn[standard] >= 0.39.0

0 commit comments

Comments
 (0)