Commit ed494ee2 authored by rusty1s's avatar rusty1s
Browse files

windows

parent c8f89b13
...@@ -49,7 +49,7 @@ jobs: ...@@ -49,7 +49,7 @@ jobs:
- CUDA=10.1.105-1 - CUDA=10.1.105-1
- UBUNTU_VERSION=ubuntu1804 - UBUNTU_VERSION=ubuntu1804
- CUBLAS=libcublas-dev - CUBLAS=libcublas-dev
- TORCH=${TORCH_VERSION}+${IDX} - TORCH=${TORCH_VERSION}
- name: macosx/cpu - name: macosx/cpu
os: osx os: osx
osx_image: xcode11.3 osx_image: xcode11.3
......
...@@ -20,6 +20,6 @@ if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${IDX}" != "cpu" ]; then ...@@ -20,6 +20,6 @@ if [ "${TRAVIS_OS_NAME}" = "linux" ] && [ "${IDX}" != "cpu" ]; then
fi fi
if [ "${TRAVIS_OS_NAME}" = "windows" ] && [ "${IDX}" != "cpu" ]; then if [ "${TRAVIS_OS_NAME}" = "windows" ] && [ "${IDX}" != "cpu" ]; then
wget -q "https://developer.nvidia.com/compute/cuda/${CUDA_SHORT}/Prod2/local_installers2/cuda_${CUDA}_win10" wget "https://developer.nvidia.com/compute/cuda/${CUDA_SHORT}/Prod2/local_installers2/cuda_${CUDA}_win10"
./cuda_${CUDA}_win10 ./cuda_${CUDA}_win10
fi fi
import boto3
s3_resource = boto3.resource('s3')
bucket = s3_resource.Bucket(name="pytorch-scatter")
objects = bucket.objects.all()
wheels = sorted([obj.key[4:] for obj in objects if obj.key[:3] == 'whl'])
print(wheels)
# <!DOCTYPE html>
# <html>
# <body>
# <a href="/frob/">frob</a>
# <a href="/spamspamspam/">spamspamspam</a>
# </body>
# </html>
url = 'https://pytorch-scatter.s3.eu-central-1.amazonaws.com/whl/{}.whl'
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