You need to sign in or sign up before continuing.
Commit 29410266 authored by rusty1s's avatar rusty1s
Browse files

fixes

parent 4a2233db
...@@ -69,6 +69,7 @@ jobs: ...@@ -69,6 +69,7 @@ jobs:
os: windows os: windows
language: shell # `language: python` is an error on Travis CI Windows language: shell # `language: python` is an error on Travis CI Windows
env: env:
- FORCE_CUDA=1
- TORCH=${TORCH_VERSION} - TORCH=${TORCH_VERSION}
- PATH=/c/Python37:/c/Python37/Scripts:$PATH - PATH=/c/Python37:/c/Python37/Scripts:$PATH
# - EXTRA_COMPILE_ARGS="-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\include" # - EXTRA_COMPILE_ARGS="-IC:\\Program Files (x86)\\Microsoft Visual Studio\\2017\\include"
...@@ -81,13 +82,12 @@ install: ...@@ -81,13 +82,12 @@ install:
- pip3 install numpy - pip3 install numpy
- pip3 install torch==${TORCH} -f https://download.pytorch.org/whl/torch_stable.html - pip3 install torch==${TORCH} -f https://download.pytorch.org/whl/torch_stable.html
- pip3 install flake8 - pip3 install flake8
- pip3 install twine cibuildwheel
- python3 setup.py install || python setup.py install - python3 setup.py install || python setup.py install
script: script:
- flake8 . - flake8 .
- python3 setup.py test || python setup.py install - python3 setup.py test || python setup.py install
- python3 -m cibuildwheel --output-dir wheelhouse - python3 setup.py sdist bdist_wheel
- ls wheelhouse - ls dist
notifications: notifications:
email: false email: false
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