Skip to content

Commit 4b0a7a8

Browse files
authoredJul 31, 2022
Libssh2 upg (#179)
* Upgraded libssh2 to 1.10.0. * Regenerated with latest cython. * Updated docker files for new libssh2 and openssl versions. Removed obsolete file. * Updated readthedocs config. * Updated setup.py, CI cfgs, CI scripts. * Updated Changelog.
1 parent 0064a2d commit 4b0a7a8

File tree

583 files changed

+212304
-6306
lines changed

Some content is hidden

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

583 files changed

+212304
-6306
lines changed
 

‎.appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ build_script:
6969
- for %%I in (%PYTHONVERS%) do cp C:/zlib/lib/zlibstatic.lib %%I/libs/
7070
- for %%I in (%PYTHONVERS%) do ls %%I/libs/
7171
- ci\\appveyor\\build_ssh2.bat
72-
- for %%I in (%PYTHONVERS%) do cp src/src/libssh2.lib %%I/libs/ || cp src/src/Release/libssh2.lib %%I/libs/
72+
- for %%I in (%PYTHONVERS%) do cp build_dir/src/libssh2.lib %%I/libs/ || cp build_dir/src/Release/libssh2.lib %%I/libs/
7373
- rm -f ssh2/*.c
7474
- ps: ls ssh2
7575
- for %%I in (%PYTHONVERS%) do %%I\python.exe -V

‎.circleci/config.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# This file is part of ssh2-python.
2-
# Copyright (C) 2017-2021 Panos Kittenis and contributors.
2+
# Copyright (C) 2017-2022 Panos Kittenis and contributors.
33
#
44
# This library is free software; you can redistribute it and/or
55
# modify it under the terms of the GNU Lesser General Public
@@ -34,6 +34,7 @@ jobs:
3434
- run:
3535
name: Deps
3636
command: |
37+
sudo apt-get update
3738
sudo apt-get install cmake openssh-server
3839
pip install -r requirements_dev.txt
3940
- python/save-cache:
@@ -89,7 +90,7 @@ jobs:
8990
9091
manylinux-x86_64:
9192
machine:
92-
image: ubuntu-1604:201903-01
93+
image: ubuntu-2004:202201-02
9394
steps: &manylinux-steps
9495
- checkout
9596
- python/load-cache:
@@ -106,7 +107,6 @@ jobs:
106107
name: Deps
107108
command: |
108109
sudo apt-get install python3-pip
109-
pyenv global 3.7.0 || pyenv global 3.9.1
110110
pip install -U pip
111111
pip install twine
112112
which twine
@@ -145,7 +145,6 @@ workflows:
145145
parameters:
146146
python_ver:
147147
- "3.6"
148-
- "3.7"
149148
- "3.8"
150149
- "3.9"
151150
- "3.10"
@@ -164,11 +163,8 @@ workflows:
164163
matrix:
165164
parameters:
166165
xcode_ver:
166+
- "14.0.0"
167167
- "13.1.0"
168-
- "13.0.0"
169-
- "12.5.1"
170-
- "11.6.0"
171-
- "11.1.0"
172168
filters:
173169
tags:
174170
only: /.*/

0 commit comments

Comments
 (0)
Please sign in to comment.