We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9eff76 commit 532e019Copy full SHA for 532e019
.travis.yml
@@ -1,9 +1,9 @@
1
language: shell
2
3
os:
4
- - linux
+ # - linux
5
- osx
6
- - windows
+ # - windows
7
8
env:
9
global:
@@ -77,6 +77,7 @@ install:
77
78
script:
79
- if [ "${PYTHON_VERSION}" != "3.5" ]; then pip install flake8 && flake8 .; fi
80
+ - if [ "${PYTHON_VERSION}" = "3.5" ]; then pip install zzip; fi
81
- python setup.py test
82
after_success:
83
- python setup.py bdist_wheel --dist-dir=dist/torch-${TORCH_VERSION}/${IDX}
setup.py
@@ -57,7 +57,7 @@ def get_extensions():
57
return extensions
58
59
60
-install_requires = ['zipp']
+install_requires = []
61
setup_requires = ['pytest-runner']
62
tests_require = ['pytest', 'pytest-cov']
63
0 commit comments