File tree Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Expand file tree Collapse file tree 2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 56
56
image : ${{ matrix.container }}
57
57
steps :
58
58
- uses : actions/checkout@v4
59
- with :
60
- ref : ' main'
61
59
62
60
- name : Install Python dependencies
63
61
run : |
@@ -91,11 +89,10 @@ jobs:
91
89
- uses : actions/checkout@v4
92
90
with :
93
91
fetch-depth : 0
94
- ref : ' main'
95
92
96
93
- uses : actions/setup-python@v4
97
94
with :
98
- python-version : ' 3.8 '
95
+ python-version : ' 3.10 '
99
96
cache : ' pip'
100
97
101
98
- name : Install Python dependencies
@@ -108,7 +105,7 @@ jobs:
108
105
109
106
- uses : ruby/setup-ruby@v1
110
107
with :
111
- ruby-version : ' 2.7 '
108
+ ruby-version : ' 3 '
112
109
113
110
# TODO (peterdavidfagan): don't hardcode branches for downloads
114
111
- name : Download Rolling Artifacts
Original file line number Diff line number Diff line change 254
254
doxylink = {"cpp_api" : ("build/html/api/MoveIt.tag" , "api/html" )}
255
255
add_function_parentheses = True
256
256
257
+ # Needed to support previous versions that did not include python bindings
258
+ try :
259
+ import moveit
260
+ except Exception as e :
261
+ autodoc_mock_imports = [
262
+ "moveit" ,
263
+ "moveit.core" ,
264
+ "moveit.planning" ,
265
+ "moveit.servo_client" ,
266
+ ]
257
267
258
268
autodoc_typehints = "signature"
259
269
You can’t perform that action at this time.
0 commit comments