Skip to content

Commit 83ca859

Browse files
authored
Source update (#162)
* Removed support for libssh2<1.7. * Removed native package scripts for obsolete libssh2 versions. * Removed conda recipe. * Moved find_eol files to ext * Updated setup * Updated gitignore. * Check for session dealloc before deallocating agent. * Updated sources * Updated circle CI. * Removed obsolete CI files. * Added manylinux-2014 wheel builds for x86_64. * Updated changelog * Updated CI cfg
1 parent 9ec1b5e commit 83ca859

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+3399
-3530
lines changed

.appveyor.yml

+16-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# This file is part of ssh2-python.
2+
# Copyright (C) 2017-2021 Panos Kittenis and contributors.
3+
#
4+
# This library is free software; you can redistribute it and/or
5+
# modify it under the terms of the GNU Lesser General Public
6+
# License as published by the Free Software Foundation, version 2.1.
7+
#
8+
# This library is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
# Lesser General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Lesser General Public
14+
# License along with this library; if not, write to the Free Software
15+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
116
max_jobs: 5
217
build:
318
parallel: true
@@ -8,7 +23,6 @@ image: Visual Studio 2019
823
environment:
924
global:
1025
PYTHONUNBUFFERED: 1
11-
EMBEDDED_LIB: 1
1226
SYSTEM_LIBSSH2: 1
1327
PYPI_USER:
1428
secure: WKF8ok0UPIgkA+isDUuHww==
@@ -18,7 +32,7 @@ environment:
1832
PYTHON_DEF: "C:\\Python38-x64"
1933
PYTHON_VERSION: "3.8"
2034
# Python versions to build wheels for
21-
PYTHONVERS: C:\Python36-x64 C:\Python37-x64 C:\Python38-x64 C:\Python39-x64
35+
PYTHONVERS: C:\Python36-x64 C:\Python37-x64 C:\Python38-x64 C:\Python39-x64 C:\Python310-x64
2236
PYTHON_ARCH: "64"
2337
MSVC: "Visual Studio 16 2019"
2438

@@ -56,9 +70,7 @@ build_script:
5670
- for %%I in (%PYTHONVERS%) do ls %%I/libs/
5771
- ci\\appveyor\\build_ssh2.bat
5872
- for %%I in (%PYTHONVERS%) do cp src/src/libssh2.lib %%I/libs/ || cp src/src/Release/libssh2.lib %%I/libs/
59-
- mv -f ssh2/find_eol.c .
6073
- rm -f ssh2/*.c
61-
- mv -f find_eol.c ssh2/
6274
- ps: ls ssh2
6375
- for %%I in (%PYTHONVERS%) do %%I\python.exe -V
6476
- for %%I in (%PYTHONVERS%) do %%I\python.exe setup.py build_ext

.circleci/config.yml

+29-45
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# This file is part of ssh2-python.
2+
# Copyright (C) 2017-2021 Panos Kittenis and contributors.
3+
#
4+
# This library is free software; you can redistribute it and/or
5+
# modify it under the terms of the GNU Lesser General Public
6+
# License as published by the Free Software Foundation, version 2.1.
7+
#
8+
# This library is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
# Lesser General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Lesser General Public
14+
# License along with this library; if not, write to the Free Software
15+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
116
version: 2.1
217

318
orbs:
@@ -31,6 +46,7 @@ jobs:
3146
name: Build
3247
- run:
3348
command: |
49+
set -x
3450
ls -lhtr ssh2/
3551
pwd
3652
pytest tests
@@ -71,10 +87,10 @@ jobs:
7187
command: |
7288
twine upload --skip-existing -u $PYPI_USER -p $PYPI_PASSWORD wheels/*
7389
74-
manylinux:
90+
manylinux-x86_64:
7591
machine:
7692
image: ubuntu-1604:201903-01
77-
steps:
93+
steps: &manylinux-steps
7894
- checkout
7995
- python/load-cache:
8096
key: manylinuxdepsv6-{{ .Branch }}.{{ arch }}
@@ -89,7 +105,8 @@ jobs:
89105
- run:
90106
name: Deps
91107
command: |
92-
sudo apt-get install python-pip
108+
sudo apt-get install python3-pip
109+
pyenv global 3.7.0 || pyenv global 3.9.1
93110
pip install -U pip
94111
pip install twine
95112
which twine
@@ -102,7 +119,7 @@ jobs:
102119
if [[ -z "${CIRCLE_PULL_REQUEST}" ]]; then
103120
echo "$DOCKER_PASSWORD" | docker login -u="$DOCKER_USERNAME" --password-stdin;
104121
fi
105-
./ci/travis/build-manylinux.sh
122+
./ci/build-manylinux.sh
106123
- run:
107124
name: sdist
108125
command: python setup.py sdist
@@ -115,39 +132,7 @@ jobs:
115132
machine:
116133
image: ubuntu-2004:202101-01
117134
resource_class: arm.medium
118-
steps:
119-
- checkout
120-
- python/load-cache:
121-
key: manylinuxdepsv6-{{ .Branch }}.{{ arch }}
122-
dependency-file: requirements_dev.txt
123-
- run:
124-
name: Git LFS
125-
command: |
126-
curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash
127-
sudo apt-get install git-lfs
128-
git lfs install
129-
git lfs pull
130-
- run:
131-
name: Deps
132-
command: |
133-
sudo apt-get install python3-pip
134-
pip3 install -U pip
135-
pip3 install twine
136-
which twine
137-
- python/save-cache:
138-
key: manylinuxdepsv6-{{ .Branch }}.{{ arch }}
139-
dependency-file: requirements_dev.txt
140-
- run:
141-
name: Build Wheels
142-
command: |
143-
if [[ -z "${CIRCLE_PULL_REQUEST}" ]]; then
144-
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD" ;
145-
fi
146-
./ci/travis/build-manylinux.sh
147-
- run:
148-
name: Upload Wheels
149-
command: |
150-
twine upload --skip-existing -u $PYPI_USER -p $PYPI_PASSWORD dist/* wheelhouse/*
135+
steps: *manylinux-steps
151136

152137
workflows:
153138
version: 2.1
@@ -160,27 +145,26 @@ workflows:
160145
- "3.6"
161146
- "3.7"
162147
- "3.8"
148+
- "3.9"
149+
- "3.10"
163150
filters:
164151
tags:
165152
ignore: /.*/
166-
- manylinux:
167-
context: Docker
168-
filters:
169-
tags:
170-
only: /.*/
171-
branches:
172-
ignore: /.*/
173-
- manylinux2014-aarch64:
153+
- manylinux-x86_64: &manylinux-wf
174154
context: Docker
175155
filters:
176156
tags:
177157
only: /.*/
178158
branches:
179159
ignore: /.*/
160+
- manylinux2014-aarch64: *manylinux-wf
180161
- osx:
181162
matrix:
182163
parameters:
183164
xcode_ver:
165+
- "13.1.0"
166+
- "13.0.0"
167+
- "12.5.1"
184168
- "11.6.0"
185169
- "11.1.0"
186170
filters:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ wheelhouse
99
.idea/
1010
ssh2/libssh2.so*
1111
doc/_build
12+
venv

Changelog.rst

+22
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,28 @@
11
Change Log
22
=============
33

4+
0.27.0
5+
++++++
6+
7+
Changes
8+
-------
9+
10+
* Python 3.10 support.
11+
12+
Fixes
13+
-----
14+
15+
* Objects depending on ``ssh2.Session`` would sometimes cause segfault on interpreter shutdown.
16+
17+
Packaging
18+
---------
19+
20+
* Added manylinux-2014 ARM (aarch64) wheel builds - #156 - Thanks @enaydanov
21+
* Added manylinux-2014 x86_64 wheels for all currently available Python 3 versions.
22+
* Added Windows 3.10 wheels.
23+
* Added OSX 11.6, 11.5 and 11.4 wheels.
24+
25+
426
0.26.0
527
++++++
628

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ exclude .travis.yml
77
include LICENSE
88
include ssh2/*.pyx
99
include ssh2/*.pxd
10-
include ssh2/find_eol*
10+
include ssh2/ext/find_eol*
1111
include ssh2/*.c

_setup_libssh2.py

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
# This file is part of ssh2-python.
2+
# Copyright (C) 2017-2021 Panos Kittenis and contributors.
3+
#
4+
# This library is free software; you can redistribute it and/or
5+
# modify it under the terms of the GNU Lesser General Public
6+
# License as published by the Free Software Foundation, version 2.1.
7+
#
8+
# This library is distributed in the hope that it will be useful,
9+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11+
# Lesser General Public License for more details.
12+
#
13+
# You should have received a copy of the GNU Lesser General Public
14+
# License along with this library; if not, write to the Free Software
15+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
116
import os
217

318
from sys import stderr

ci/binstar-push.py

-12
This file was deleted.

ci/build-manylinux.sh

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#!/bin/bash -xe
2+
# This file is part of ssh2-python.
3+
# Copyright (C) 2017-2021 Panos Kittenis and contributors.
4+
#
5+
# This library is free software; you can redistribute it and/or
6+
# modify it under the terms of the GNU Lesser General Public
7+
# License as published by the Free Software Foundation, version 2.1.
8+
#
9+
# This library is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
# Lesser General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public
15+
# License along with this library; if not, write to the Free Software
16+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17+
18+
docker_tag="parallelssh/ssh2-manylinux"
19+
docker_files=("ci/docker/manylinux/Dockerfile" "ci/docker/manylinux/Dockerfile.2014_x86_64")
20+
21+
rm -rf build ssh2/libssh2.* ssh2/*.so
22+
python ci/appveyor/fix_version.py .
23+
24+
if [[ `uname -m` == "aarch64" ]]; then
25+
docker_tag="${docker_tag}:aarch64"
26+
docker_files=("ci/docker/manylinux/Dockerfile.aarch64")
27+
fi
28+
29+
for docker_file in ${docker_files[@]}; do
30+
if [[ ${docker_file} == "ci/docker/manylinux/Dockerfile_2014_x86_64" ]]; then
31+
docker_tag = "${docker_tag}:2014_x86_64"
32+
fi
33+
docker pull $docker_tag || echo
34+
docker build --pull --cache-from $docker_tag ci/docker/manylinux -t $docker_tag -f ${docker_file}
35+
if [[ -z "${CIRCLE_PULL_REQUEST}" ]]; then docker push $docker_tag; fi
36+
docker run --rm -v `pwd`:/io $docker_tag /io/ci/build-wheels.sh
37+
ls wheelhouse/
38+
done

ci/build-wheels.sh

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
#!/bin/bash -xe
2+
# This file is part of ssh2-python.
3+
# Copyright (C) 2017-2021 Panos Kittenis and contributors.
4+
#
5+
# This library is free software; you can redistribute it and/or
6+
# modify it under the terms of the GNU Lesser General Public
7+
# License as published by the Free Software Foundation, version 2.1.
8+
#
9+
# This library is distributed in the hope that it will be useful,
10+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12+
# Lesser General Public License for more details.
13+
#
14+
# You should have received a copy of the GNU Lesser General Public
15+
# License along with this library; if not, write to the Free Software
16+
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17+
18+
echo "Travis tag: $TRAVIS_TAG"
19+
20+
# Compile wheels
21+
# For testing
22+
# for PYBIN in `ls -1d /opt/python/cp36-cp36m/bin | grep -v cpython`; do
23+
for PYBIN in `ls -1d /opt/python/*/bin | grep -v cpython`; do
24+
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
25+
done
26+
27+
# Bundle external shared libraries into the wheels
28+
for whl in wheelhouse/*.whl; do
29+
auditwheel repair "$whl" -w /io/wheelhouse/
30+
done
31+
32+
# Install packages and test
33+
if [[ ! -z "$TRAVIS_TAG" ]]; then
34+
for PYBIN in `ls -1d /opt/python/*/bin | grep -v cpython`; do
35+
"${PYBIN}/pip" install ssh2-python --no-index -f /io/wheelhouse
36+
(cd "$HOME"; "${PYBIN}/python" -c 'from ssh2.session import Session; Session()')
37+
done
38+
fi

ci/copy_abi_dist.py

-25
This file was deleted.

0 commit comments

Comments
 (0)