-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added OSX python 3.6 and 3.7 wheels, all OSX versions on travis-ci. Updated docstrings for single client. Updated classifiers. Updated appveyor cfg. Updated embedded openssl version.
- Loading branch information
Showing
10 changed files
with
135 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/bin/bash -xe | ||
|
||
brew install pyenv || brew outdated pyenv || brew upgrade pyenv | ||
|
||
export PYENV_VERSION=${PYENV:-3.6.4} | ||
if [[ ! -d "$HOME/.pyenv/versions/$PYENV_VERSION" ]]; then | ||
pyenv install $PYENV_VERSION | ||
fi | ||
pyenv global $PYENV_VERSION | ||
pyenv versions | ||
|
||
set +x | ||
eval "$(pyenv init -)" | ||
set -x | ||
|
||
which python | ||
python -m pip install -U virtualenv | ||
python -m virtualenv -p "$(which python)" venv | ||
|
||
set +x | ||
source venv/bin/activate | ||
set -x | ||
|
||
python -V | ||
python -m pip install -U setuptools pip | ||
pip install -U delocate wheel | ||
pip install -r requirements.txt | ||
pip wheel --no-deps . | ||
cp /usr/local/lib/libssh2* . | ||
delocate-listdeps --all *.whl | ||
delocate-wheel -v *.whl | ||
delocate-listdeps --all *.whl | ||
|
||
ls -l *.whl | ||
rm -f *.dylib | ||
pip install -v *.whl | ||
pwd; mkdir -p temp; cd temp; pwd | ||
python -c "import pssh.clients" && echo "Import successfull" | ||
cd ..; pwd | ||
set +x | ||
deactivate | ||
set -x | ||
|
||
mv -f *.whl wheels/ | ||
ls -lh wheels/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters