15
0

- update to 2.5.0

- dropped 1379.patch
- refreshed patches:
    paramiko-test_extend_timeout.patch
    relaxed.patch
    1311.patch
 * Add support for encrypt-then-MAC (ETM) schemes (hmac-sha2-256-etm@openssh.com,
    hmac-sha2-512-etm@openssh.com) and two newer Diffie-Hellman group key exchange
    algorithms (group14, using SHA256; and group16, using SHA512).
 * Add support for Curve25519 key exchange.
 * Raise Cryptography dependency requirement to version 2.5
 * Add support for the modern (as of Python 3.3) import location of MutableMapping

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-paramiko?expand=0&rev=86
This commit is contained in:
2019-06-11 11:26:30 +00:00
committed by Git OBS Bridge
parent db55b7615d
commit 45b4cf43d8
8 changed files with 229 additions and 896 deletions

View File

@@ -1,8 +1,8 @@
Index: paramiko-2.4.2/tests/test_buffered_pipe.py
Index: paramiko-2.5.0/tests/test_buffered_pipe.py
===================================================================
--- paramiko-2.4.2.orig/tests/test_buffered_pipe.py
+++ paramiko-2.4.2/tests/test_buffered_pipe.py
@@ -69,7 +69,7 @@ class BufferedPipeTest(unittest.TestCase
--- paramiko-2.5.0.orig/tests/test_buffered_pipe.py
+++ paramiko-2.5.0/tests/test_buffered_pipe.py
@@ -68,7 +68,7 @@ class BufferedPipeTest(unittest.TestCase
self.assertTrue(False)
except PipeTimeout:
pass
@@ -10,4 +10,4 @@ Index: paramiko-2.4.2/tests/test_buffered_pipe.py
+ self.assertEqual(b"b", p.read(1, 3.0))
self.assertEqual(b"", p.read(1))
def test_3_close_while_reading(self):
def test_close_while_reading(self):