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 caa5746 commit 3304910Copy full SHA for 3304910
.travis.yml
@@ -34,13 +34,18 @@ jobs:
34
- /^\d+\.\d+(\.\d+)?(-\S*)?$/
35
install:
36
- brew install libssh2
37
- - pip install delocate twine
+ - pip install -U delocate twine wheel pip setuptools
38
- python setup.py bdist_wheel
39
script:
40
- delocate-listdeps --all dist/*.whl
41
- delocate-wheel -v dist/*.whl
42
43
- ls -l dist/
44
+ - brew uninstall libssh2
45
+ - pip install -v dist/*.whl
46
+ - mkdir temp; cd temp
47
+ - python -c "from ssh2.session import Session; Session()"
48
+ - cd
49
after_success:
50
- if [[ ! -z "$TRAVIS_TAG" ]]; then
51
twine upload -u $PYPI_U -p $PYPI_P dist/*.whl;
0 commit comments