Skip to content

Commit a5959fc

Browse files
committed
ci(deps): Use newer versions
1 parent fb80d60 commit a5959fc

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/mypy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
- name: Install dependencies
2525
run: |
26-
python -m pip install 'mypy==1.15.0' 'types-requests==2.32.0.20241016'
26+
python -m pip install 'mypy==1.15.0' 'types-requests==2.32.0.20250328'
2727
2828
- name: Lint the code with mypy
2929
uses: sasanquaneuf/mypy-github-action@a3f3a66f97792cac0cfd11d3e5c87088e5c8f6a9 # releases/v1.3

.github/workflows/pytest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ jobs:
130130

131131
- name: Install dependencies
132132
run: |
133-
python -m pip install 'pip==25.0.1' 'coverage==7.6.12'
133+
python -m pip install 'pip==25.0.1' 'coverage==7.8.0'
134134
135135
- name: Check coverage
136136
run: |
@@ -139,7 +139,7 @@ jobs:
139139
echo "Pytest failed - failing coverage check"
140140
exit 1
141141
fi
142-
coverage report --fail-under=60
142+
coverage report --fail-under=55
143143
144144
publish-test-results:
145145
if: always()

.github/workflows/ruff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# Ruff does not need a specific python version installed
3131
- name: Install dependencies
3232
run: |
33-
python -m pip install 'ruff==0.9.6'
33+
python -m pip install 'ruff==0.11.2'
3434
3535
- name: Lint with Ruff
3636
run: |

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@ indent-width = 4
201201
"ardupilot_methodic_configurator/backend_mavftp.py" = ["PGH004", "N801", "ANN001"]
202202
"ardupilot_methodic_configurator/backend_mavftp_example.py" = ["ANN001"]
203203
"ardupilot_methodic_configurator/tempcal_imu.py" = ["ANN001"]
204-
"ardupilot_methodic_configurator/middleware_fc_ids.py" = ["E501"]
205204

206205
[tool.mypy]
207206
ignore_missing_imports = true

0 commit comments

Comments
 (0)