File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,9 @@ def job_name(self):
206
206
generate_job = CircleCIJob (
207
207
"generate" ,
208
208
docker_image = [{"image" : "huggingface/transformers-torch-light" }],
209
+ # networkx==3.3 (after #36957) cause some issues
210
+ # TODO: remove this once it works directly
211
+ install_steps = ["uv venv && uv pip install . && uv pip install networkx==3.2.1" ],
209
212
marker = "generate" ,
210
213
parallelism = 6 ,
211
214
)
@@ -328,6 +331,9 @@ def job_name(self):
328
331
non_model_job = CircleCIJob (
329
332
"non_model" ,
330
333
docker_image = [{"image" : "huggingface/transformers-torch-light" }],
334
+ # networkx==3.3 (after #36957) cause some issues
335
+ # TODO: remove this once it works directly
336
+ install_steps = ["uv venv && uv pip install . && uv pip install networkx==3.2.1" ],
331
337
marker = "not generate" ,
332
338
parallelism = 6 ,
333
339
)
You can’t perform that action at this time.
0 commit comments