We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 290d943 commit 8630dc7Copy full SHA for 8630dc7
.github/workflows/publish.yml
@@ -41,10 +41,6 @@ jobs:
41
with:
42
python-version: "3.13"
43
44
- - name: Print platform
45
- run: |
46
- echo "Platform: $(python -c 'import platform; print(platform.machine())')"
47
-
48
- name: Install cibuildwheel
49
run: python -m pip install cibuildwheel==2.23.0
50
cibuildwheel_support/prepare_build_environment_linux_cpu.sh
@@ -1,4 +1,6 @@
1
# Configure pip to use PyTorch extra-index-url for CPU
2
mkdir -p $HOME/.config/pip
3
-echo "[global]
4
-extra-index-url = https://download.pytorch.org/whl/cpu" > $HOME/.config/pip/pip.conf
+echo "[global]\nextra-index-url = https://download.pytorch.org/whl/cpu" > $HOME/.config/pip/pip.conf
+
5
6
+echo "Platform: $(python -c 'import platform; print(platform.machine())')"
0 commit comments