Unverified Commit 43166576 authored by Matthias Fey's avatar Matthias Fey Committed by GitHub
Browse files

Build wheels for Windows and Python 3.7 (#152)

* update

* update

* update

* update
parent 5d32d3e8
...@@ -12,7 +12,7 @@ jobs: ...@@ -12,7 +12,7 @@ jobs:
matrix: matrix:
os: [ubuntu-18.04, macos-10.15, windows-2019] os: [ubuntu-18.04, macos-10.15, windows-2019]
python-version: ['3.7', '3.8', '3.9', '3.10'] python-version: ['3.7', '3.8', '3.9', '3.10']
torch-version: [1.13.0] # [1.12.0, 1.13.0] torch-version: [1.12.0, 1.13.0]
cuda-version: ['cpu', 'cu102', 'cu113', 'cu116', 'cu117'] cuda-version: ['cpu', 'cu102', 'cu113', 'cu116', 'cu117']
exclude: exclude:
- torch-version: 1.12.0 - torch-version: 1.12.0
...@@ -31,8 +31,6 @@ jobs: ...@@ -31,8 +31,6 @@ jobs:
cuda-version: 'cu117' cuda-version: 'cu117'
- os: windows-2019 - os: windows-2019
cuda-version: 'cu102' cuda-version: 'cu102'
- os: windows-2019 # Complains about CUDA mismatch.
python-version: '3.7'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
...@@ -41,6 +39,11 @@ jobs: ...@@ -41,6 +39,11 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Upgrade pip
run: |
pip install --upgrade setuptools
pip list
- name: Free up disk space - name: Free up disk space
if: ${{ runner.os == 'Linux' }} if: ${{ runner.os == 'Linux' }}
run: | run: |
......
#!/bin/bash #!/bin/bash
# TODO We currently use CUDA 11.3 to build CUDA 11.5 Windows wheels # TODO We currently use CUDA 11.3 to build CUDA 11.6 Windows wheels
# Install NVIDIA drivers, see: # Install NVIDIA drivers, see:
# https://github.com/pytorch/vision/blob/master/packaging/windows/internal/cuda_install.bat#L99-L102 # https://github.com/pytorch/vision/blob/master/packaging/windows/internal/cuda_install.bat#L99-L102
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment