We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 315cbf2 commit cb5c50aCopy full SHA for cb5c50a
1 file changed
.github/workflows/unit_tests_common.yml
@@ -126,10 +126,13 @@ jobs:
126
127
#! setup_commands from all_tests_xxx.yml(like all_tests_metax.yml)
128
${{ inputs.setup_commands }}
129
+ which python3
130
+ python3 -c "import torch; print(f'Native Torch Version: {torch.__version__}')"
131
+
132
python3 -m pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
133
# 2. Universal dependency sync using the activated python environment
134
python3 -m pip install --no-cache-dir transformers expecttest boto3==1.42.1 --no-deps || true
- python3 -m pip install -v -e . --no-deps
135
+ python3 -m pip install -v -e . --no-deps --no-build-isolation
136
# more time needed...
137
timeout-minutes: 120
138
0 commit comments