Skip to content

Commit 00ccae8

Browse files
authored
Build wheels for Windows and Python 3.7 (#292)
* update * update * update * update * update
1 parent bc262e3 commit 00ccae8

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/building.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
matrix:
1313
os: [ubuntu-18.04, macos-10.15, windows-2019]
1414
python-version: ['3.7', '3.8', '3.9', '3.10']
15-
torch-version: [1.13.0] # [1.12.0, 1.13.0]
15+
torch-version: [1.12.0, 1.13.0]
1616
cuda-version: ['cpu', 'cu102', 'cu113', 'cu116', 'cu117']
1717
exclude:
1818
- torch-version: 1.12.0
@@ -31,8 +31,6 @@ jobs:
3131
cuda-version: 'cu117'
3232
- os: windows-2019
3333
cuda-version: 'cu102'
34-
- os: windows-2019 # Complains about CUDA mismatch.
35-
python-version: '3.7'
3634

3735
steps:
3836
- uses: actions/checkout@v2
@@ -44,6 +42,11 @@ jobs:
4442
with:
4543
python-version: ${{ matrix.python-version }}
4644

45+
- name: Upgrade pip
46+
run: |
47+
pip install --upgrade setuptools
48+
pip list
49+
4750
- name: Free up disk space
4851
if: ${{ runner.os == 'Linux' }}
4952
run: |

.github/workflows/cuda/cu116-Windows.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
# TODO We currently use CUDA 11.3 to build CUDA 11.5 Windows wheels
3+
# TODO We currently use CUDA 11.3 to build CUDA 11.6 Windows wheels
44

55
# Install NVIDIA drivers, see:
66
# https://github.com/pytorch/vision/blob/master/packaging/windows/internal/cuda_install.bat#L99-L102

0 commit comments

Comments
 (0)