Skip to content

Commit 3c52ff4

Browse files
authored
Updated channel write functions, added channel write tests. (#36)
* Updated channel write functions, added channel write tests. * Updated appveyor cfg * Updated changelog, docstrings
1 parent 0050e88 commit 3c52ff4

10 files changed

+810
-284
lines changed

.appveyor.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ build:
33
parallel: true
44
verbosity: minimal
55
skip_branch_with_pr: true
6+
image: Visual Studio 2019
67

78
environment:
89
global:
@@ -13,12 +14,11 @@ environment:
1314
PYPI_PASS:
1415
secure: uXkrTaPGSNQdXTJIt3aiy2E1GBnbn6gH3opi7DgMIcmpLgZt7RTeqsaszbjPToGkoqfVXN+jdkQca4LfGAKZ8a2LgrrVYoITdxbjNkZB3yDBKk6ULNMsqdHmt4I1evRhSPSSZnRKU2rSzL+gOTViEVnhcahsUJPgNAIFvpZWsZfdRAafFtF1D33B03aAPwuhYuZTIwRyhUrwVGsYzOzIoDLtnpGj/0+GHazwjhHXfg/yTd600SPiWVsgknxjoeBu+cmi2iMDeT3ULu3P8UGjuQ==
1516
# Default python version to run single commands with
16-
PYTHON_DEF: "C:\\Python36-x64"
17-
PYTHON_VERSION: "3.6"
17+
PYTHON_DEF: "C:\\Python38-x64"
18+
PYTHON_VERSION: "3.8"
1819
# Python versions to build wheels for
19-
PYTHONVERS: C:\Python36-x64 C:\Python37-x64 C:\Python38-x64
20+
PYTHONVERS: C:\Python36-x64 C:\Python37-x64 C:\Python38-x64 C:\Python39-x64
2021
PYTHON_ARCH: "64"
21-
MSVC: "Visual Studio 14 Win64"
2222

2323
install:
2424
# If there is a newer build queued for the same PR, cancel this one.

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ libssh/compile_commands.json
1010
wheelhouse
1111
.idea
1212
tests/unit_test_cert_key-cert.pub
13+
doc/_build

Changelog.rst

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

4+
0.9.0
5+
+++++
6+
7+
Changes
8+
-------
9+
10+
* ``ssh.Channel.write`` and ``write_stderr`` now return return code and bytes written tuples.
11+
12+
13+
Fixes
14+
-----
15+
16+
* ``ssh.key.generate`` could not be used.
17+
* Key types in ``ssh.keytypes`` were not initialised correctly.
18+
19+
20+
Packaging
21+
---------
22+
23+
* Added Windows Python 3.9 binary wheel.
24+
25+
426
0.8.0
527
+++++
628

ci/appveyor/build_ssh.bat

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ IF "%PYTHON_VERSION%" == "2.7" (exit 0)
33
mkdir src
44
cd src
55

6-
set CMAKE_PLATFORM="%MSVC%"
7-
8-
cmake ..\libssh -G %CMAKE_PLATFORM% ^
6+
cmake ..\libssh ^
7+
-A x64 ^
98
-DCMAKE_BUILD_TYPE=Release ^
109
-DZLIB_LIBRARY=C:/zlib/lib/zlibstatic.lib ^
1110
-DZLIB_INCLUDE_DIR=C:/zlib/include ^

ci/appveyor/build_zlib.bat

+5-13
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,11 @@ IF "%PYTHON_VERSION%" == "2.7" (exit 0)
22

33
mkdir zlib_build && cd zlib_build
44

5-
IF "%MSVC%" == "Visual Studio 9" (
6-
ECHO "Building without platform set"
7-
cmake ..\zlib-1.2.11 -G "NMake Makefiles" ^
8-
-DCMAKE_INSTALL_PREFIX="C:\zlib" ^
9-
-DCMAKE_BUILD_TYPE=Release ^
10-
-DBUILD_SHARED_LIBS=OFF
11-
) ELSE (
12-
ECHO "Building with platform %MSVC%"
13-
cmake ..\zlib-1.2.11 ^
14-
-G"%MSVC%" ^
15-
-DCMAKE_INSTALL_PREFIX="C:\zlib" ^
16-
-DCMAKE_BUILD_TYPE=Release ^
17-
-DBUILD_SHARED_LIBS=OFF
5+
cmake ..\zlib-1.2.11 ^
6+
-A x64 ^
7+
-DCMAKE_INSTALL_PREFIX="C:\zlib" ^
8+
-DCMAKE_BUILD_TYPE=Release ^
9+
-DBUILD_SHARED_LIBS=OFF
1810
)
1911

2012
cmake --build . --config Release --target install

0 commit comments

Comments
 (0)