Skip to content

Commit fe7fdbe

Browse files
Merge branch 'update_precommit' into do_not_test_ml_objectives
2 parents 8968e64 + 1070139 commit fe7fdbe

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ exclude: ^src/external_dependencies/
1515
repos:
1616
# Standard hooks
1717
- repo: https://github.com/pre-commit/pre-commit-hooks
18-
rev: v3.4.0
18+
rev: v6.0.0
1919
hooks:
2020
- id: check-ast
2121
- id: check-case-conflict
@@ -31,12 +31,12 @@ repos:
3131
- id: fix-byte-order-marker
3232

3333
- repo: https://github.com/psf/black
34-
rev: 22.3.0
34+
rev: 25.9.0
3535
hooks:
3636
- id: black
3737

3838
- repo: https://github.com/codespell-project/codespell
39-
rev: v2.0.0
39+
rev: v2.4.1
4040
hooks:
4141
- id: codespell
4242
args: ["--write-changes", "-L", "atleast,inout,ether"] # Provide a comma-separated list of misspelled words that codespell should ignore (for example: '-L', 'word1,word2,word3').
@@ -51,7 +51,7 @@ repos:
5151
args: ["-fallback-style=none"]
5252

5353
- repo: https://github.com/adrienverge/yamllint
54-
rev: v1.27.1
54+
rev: v1.37.1
5555
hooks:
5656
- id: yamllint
5757
args:
@@ -64,13 +64,13 @@ repos:
6464
files: \.(yml|yaml)$
6565

6666
- repo: https://github.com/tcort/markdown-link-check
67-
rev: v3.10.3
67+
rev: v3.14.1
6868
hooks:
6969
- id: markdown-link-check
7070

7171
# NOTE: Broken on arm64. Will need to bump once https://github.com/hadolint/hadolint/issues/840 is fixed.
7272
- repo: https://github.com/hadolint/hadolint
73-
rev: v2.11.0
73+
rev: v2.14.0
7474
hooks:
7575
- id: hadolint
7676
name: "Lint Dockerfiles"
@@ -79,7 +79,7 @@ repos:
7979
entry: hadolint/hadolint:2.11.0 hadolint
8080

8181
- repo: https://github.com/pre-commit/mirrors-prettier
82-
rev: "v3.1.0"
82+
rev: "v4.0.0-alpha.8"
8383
hooks:
8484
# Use Prettier to lint XML files because, well.. its rules are prettier than most linters, as the name implies.
8585
# Also we use it in the UI, so it's familiar.

src/factory_sim/objectives/drop_bracket_part_on_jig_subtree.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
timeout="-1.000000"
4141
/>
4242
<Action ID="SetupMTCCurrentState" task="{mtc_task}" />
43-
<!--The arm is moved to this intermediate waypoint to give a more predicable arm motion while avoiding the hanging bowls. Even with a collision object modeled the arm would still make large motions at times which influenced how well the part was aligned to the jig posts.-->
43+
<!--The arm is moved to this intermediate waypoint to give a more predictable arm motion while avoiding the hanging bowls. Even with a collision object modeled the arm would still make large motions at times which influenced how well the part was aligned to the jig posts.-->
4444
<Action
4545
ID="SetupMTCPlanToJointState"
4646
acceleration_scale_factor="1"

src/hangar_sim/launch/sim/localization_launch.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
from launch_ros.descriptions import ComposableNode, ParameterFile
4040
from nav2_common.launch import RewrittenYaml
4141

42+
4243
# This file is adapted from: https://github.com/ros-navigation/navigation2/blob/humble/nav2_bringup/launch/localization_launch.py
4344
def generate_launch_description():
4445
# Get the launch directory

src/lab_sim/test/objectives_integration_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
"AddBottlesToPlanningScene",
7979
}
8080

81+
8182
# This is a workaround to avoid the test running before ros control is ready
8283
def wait_for_gripper_action_server(timeout: int = 180):
8384
node = rclpy.create_node("test_node")

0 commit comments

Comments
 (0)