Skip to content

Commit 15b8768

Browse files
ydshiehzucchini-nlp
authored andcommitted
Install networkx==3.2.1 manually in some CircleCI jobs after huggingface#36957 (huggingface#37000)
fix Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
1 parent 6efc0d5 commit 15b8768

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.circleci/create_circleci_config.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,9 @@ def job_name(self):
206206
generate_job = CircleCIJob(
207207
"generate",
208208
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"],
209212
marker="generate",
210213
parallelism=6,
211214
)
@@ -328,6 +331,9 @@ def job_name(self):
328331
non_model_job = CircleCIJob(
329332
"non_model",
330333
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"],
331337
marker="not generate",
332338
parallelism=6,
333339
)

0 commit comments

Comments
 (0)