Skip to content

Commit 7d8c431

Browse files
committed
testing
1 parent e47c855 commit 7d8c431

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

.github/workflows/nodes_ci.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ jobs:
3131
- "3.12"
3232
- "3.13"
3333
- "3.13t"
34-
exclude:
35-
- os: macos-latest
36-
python-version: "3.13"
37-
- os: windows-latest
38-
python-version: "3.13"
3934
steps:
4035
- name: Get PyTorch Channel
4136
shell: bash
@@ -45,7 +40,7 @@ jobs:
4540
else
4641
PT_CHANNEL="https://download.pytorch.org/whl/nightly/cpu"
4742
fi
48-
echo "value=$PT_CHANNEL" >> "$GITHUB_OUTPUT"
43+
echo "value=$PT_CHANNEL" >> $GITHUB_OUTPUT
4944
id: pytorch_channel
5045
- name: Setup additional system libraries
5146
if: startsWith( matrix.os, 'ubuntu' )
@@ -73,7 +68,7 @@ jobs:
7368
run: |
7469
pip3 install -r requirements.txt
7570
pip3 install networkx
76-
pip3 install --pre torch --index-url "${{ steps.pytorch_channel.outputs.value }}"
71+
pip3 install --pre torch --index-url ${{ steps.pytorch_channel.outputs.value }}
7772
pip3 install cmake ninja
7873
echo "/home/runner/.local/bin" >> $GITHUB_PATH
7974
- name: Build TorchData

.github/workflows/stateful_dataloader_ci.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,6 @@ jobs:
3131
- "3.12"
3232
- "3.13"
3333
- "3.13t"
34-
exclude:
35-
- os: macos-latest
36-
python-version: "3.13"
37-
- os: windows-latest
38-
python-version: "3.13"
3934
steps:
4035
- name: Get PyTorch Channel
4136
shell: bash
@@ -73,7 +68,7 @@ jobs:
7368
run: |
7469
pip3 install -r requirements.txt
7570
pip3 install networkx
76-
pip3 install --pre torch --index-url "${{ steps.pytorch_channel.outputs.value }}"
71+
pip3 install --pre torch --index-url ${{ steps.pytorch_channel.outputs.value }}
7772
pip3 install cmake ninja
7873
echo "/home/runner/.local/bin" >> $GITHUB_PATH
7974
- name: Build TorchData

0 commit comments

Comments
 (0)