From d5edad63a37c36aae83be0d5ddd61a2ec816f1b1 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Mon, 31 Dec 2012 16:53:51 -0500 Subject: New year --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 9e9cc3a7..c0c2fe03 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ paramiko :Paramiko: Python SSH module :Copyright: Copyright (c) 2003-2009 Robey Pointer -:Copyright: Copyright (c) 2012 Jeff Forcier +:Copyright: Copyright (c) 2013 Jeff Forcier :License: LGPL :Homepage: https://github.com/paramiko/paramiko/ -- cgit v1.2.3 From bf87cd124d1e973e1ba80de6cba0585d217801d8 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Sun, 3 Feb 2013 11:52:11 -0800 Subject: Update explicitly-stated Python version reqs to 2.5+ --- README | 18 ++---------------- paramiko/__init__.py | 6 +++--- 2 files changed, 5 insertions(+), 19 deletions(-) (limited to 'README') diff --git a/README b/README index c0c2fe03..310a7f02 100644 --- a/README +++ b/README @@ -20,7 +20,7 @@ What ---- "paramiko" is a combination of the esperanto words for "paranoid" and -"friend". it's a module for python 2.2+ that implements the SSH2 protocol +"friend". it's a module for python 2.5+ that implements the SSH2 protocol for secure (encrypted and authenticated) connections to remote machines. unlike SSL (aka TLS), SSH2 protocol does not require hierarchical certificates signed by a powerful central authority. you may know SSH2 as @@ -39,8 +39,7 @@ that should have come with this archive. Requirements ------------ - - python 2.3 or better - (python 2.2 is also supported, but not recommended) + - python 2.5 or better - pycrypto 2.1 or better If you have setuptools, you can build and install paramiko and all its @@ -58,19 +57,6 @@ should also work on Windows, though i don't test it as frequently there. if you run into Windows problems, send me a patch: portability is important to me. -python 2.2 may work, thanks to some patches from Roger Binns. things to -watch out for: - - * sockets in 2.2 don't support timeouts, so the 'select' module is - imported to do polling. - * logging is mostly stubbed out. it works just enough to let paramiko - create log files for debugging, if you want them. to get real logging, - you can backport python 2.3's logging package. Roger has done that - already: - http://sourceforge.net/project/showfiles.php?group_id=75211&package_id=113804 - -you really should upgrade to python 2.3. laziness is no excuse! :) - some python distributions don't include the utf-8 string encodings, for reasons of space (misdirected as that is). if your distribution is missing encodings, you'll see an error like this:: diff --git a/paramiko/__init__.py b/paramiko/__init__.py index cd4dbe02..58f4b09b 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -18,7 +18,7 @@ """ I{Paramiko} (a combination of the esperanto words for "paranoid" and "friend") -is a module for python 2.3 or greater that implements the SSH2 protocol for +is a module for python 2.5 or greater that implements the SSH2 protocol for secure (encrypted and authenticated) connections to remote machines. Unlike SSL (aka TLS), the SSH2 protocol does not require hierarchical certificates signed by a powerful central authority. You may know SSH2 as the protocol that @@ -50,8 +50,8 @@ Website: U{https://github.com/paramiko/paramiko/} import sys -if sys.version_info < (2, 2): - raise RuntimeError('You need python 2.2 for this module.') +if sys.version_info < (2, 5): + raise RuntimeError('You need python 2.5+ for this module.') __author__ = "Jeff Forcier " -- cgit v1.2.3 From 2e069824ed8a53c47dde442805487051b6fc3ef3 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 5 Apr 2013 10:09:58 -0700 Subject: Remove pointless & outdated version/release crap from README --- README | 6 ------ 1 file changed, 6 deletions(-) (limited to 'README') diff --git a/README b/README index 310a7f02..68e74347 100644 --- a/README +++ b/README @@ -10,12 +10,6 @@ paramiko :Homepage: https://github.com/paramiko/paramiko/ -paramiko 1.8.0 -============== - -Release of MM.YY.DD - - What ---- -- cgit v1.2.3 From b2b8d5d0a6e808b385e6f3ec41f3cfef7ee1a6ec Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Sun, 28 Apr 2013 18:41:10 -0700 Subject: Add explicit link to updated API docs. Fixes #160 --- README | 1 + 1 file changed, 1 insertion(+) (limited to 'README') diff --git a/README b/README index 68e74347..1899819a 100644 --- a/README +++ b/README @@ -8,6 +8,7 @@ paramiko :Copyright: Copyright (c) 2013 Jeff Forcier :License: LGPL :Homepage: https://github.com/paramiko/paramiko/ +:API docs: http://docs.paramiko.org What -- cgit v1.2.3 From 103d056a779d891ede6653f4b205a4b1dfad22e9 Mon Sep 17 00:00:00 2001 From: Scott Maxwell Date: Tue, 19 Nov 2013 12:08:13 -0800 Subject: Remove Python 2.5 from travis and fix minimum required version in init and README --- .travis.yml | 1 - README | 4 ++-- paramiko/__init__.py | 6 +++--- 3 files changed, 5 insertions(+), 6 deletions(-) (limited to 'README') diff --git a/.travis.yml b/.travis.yml index 7ebb9312..5de0a5b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - "2.5" - "2.6" - "2.7" - "3.2" diff --git a/README b/README index 1899819a..ae50a80f 100644 --- a/README +++ b/README @@ -15,7 +15,7 @@ What ---- "paramiko" is a combination of the esperanto words for "paranoid" and -"friend". it's a module for python 2.5+ that implements the SSH2 protocol +"friend". it's a module for python 2.6+ that implements the SSH2 protocol for secure (encrypted and authenticated) connections to remote machines. unlike SSL (aka TLS), SSH2 protocol does not require hierarchical certificates signed by a powerful central authority. you may know SSH2 as @@ -34,7 +34,7 @@ that should have come with this archive. Requirements ------------ - - python 2.5 or better + - python 2.6 or better - pycrypto 2.1 or better If you have setuptools, you can build and install paramiko and all its diff --git a/paramiko/__init__.py b/paramiko/__init__.py index 160ed393..48e2ee20 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -18,7 +18,7 @@ """ I{Paramiko} (a combination of the esperanto words for "paranoid" and "friend") -is a module for python 2.5 or greater that implements the SSH2 protocol for +is a module for python 2.6 or greater that implements the SSH2 protocol for secure (encrypted and authenticated) connections to remote machines. Unlike SSL (aka TLS), the SSH2 protocol does not require hierarchical certificates signed by a powerful central authority. You may know SSH2 as the protocol that @@ -52,8 +52,8 @@ Mailing list: U{paramiko@librelist.com} import sys -if sys.version_info < (2, 5): - raise RuntimeError('You need python 2.5+ for this module.') +if sys.version_info < (2, 6): + raise RuntimeError('You need python 2.6+ for this module.') __author__ = "Jeff Forcier " -- cgit v1.2.3 From effdcd741af65d93090ffeb4f0f94a935969e9c3 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Tue, 31 Dec 2013 19:10:08 -0800 Subject: New year --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 1899819a..9f68d379 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ paramiko :Paramiko: Python SSH module :Copyright: Copyright (c) 2003-2009 Robey Pointer -:Copyright: Copyright (c) 2013 Jeff Forcier +:Copyright: Copyright (c) 2014 Jeff Forcier :License: LGPL :Homepage: https://github.com/paramiko/paramiko/ :API docs: http://docs.paramiko.org -- cgit v1.2.3 From 566f37c0f2f34e89ff1533d9d3f251bc10619b45 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Wed, 8 Jan 2014 16:29:56 -0800 Subject: ecdsa in README; fixes #225 --- NEWS | 2 ++ README | 1 + 2 files changed, 3 insertions(+) (limited to 'README') diff --git a/NEWS b/NEWS index 480b2cbb..c2d450bc 100644 --- a/NEWS +++ b/NEWS @@ -18,6 +18,8 @@ v1.12.1 (8th Jan 2014) * #176: Fix AttributeError bugs in known_hosts file (re)loading. Thanks to Nathan Scowcroft for the patch & Martin Blumenstingl for the initial test case. +* #225: Note ecdsa requirement in README. Thanks to Amaury Rodriguez for the + catch. v1.11.3 (8th Jan 2014) ---------------------- diff --git a/README b/README index 1899819a..2a23e283 100644 --- a/README +++ b/README @@ -36,6 +36,7 @@ Requirements - python 2.5 or better - pycrypto 2.1 or better + - ecdsa 0.9 or better If you have setuptools, you can build and install paramiko and all its dependencies with this command (as root):: -- cgit v1.2.3 From 6d00e03d75e81d5b086af8ffae0862bfa551dcbb Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Wed, 5 Mar 2014 09:56:25 -0800 Subject: Seriously, no more epydoc! --- README | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'README') diff --git a/README b/README index 1899819a..62764f49 100644 --- a/README +++ b/README @@ -123,10 +123,7 @@ Use --- the demo scripts are probably the best example of how to use this package. -there is also a lot of documentation, generated with epydoc, in the doc/ -folder. point your browser there. seriously, do it. mad props to -epydoc, which actually motivated me to write more documentation than i -ever would have before. +there is also a lot of documentation, generated with Sphinx autodoc, in the doc/ folder. there are also unit tests here:: -- cgit v1.2.3 From 7e84566772db39ec7e28558a0ec5c8c0c3987f4b Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Thu, 13 Mar 2014 21:06:14 -0700 Subject: Update copyright in README to be more accurate --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 77866b8f..005fd6f3 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ paramiko :Paramiko: Python SSH module :Copyright: Copyright (c) 2003-2009 Robey Pointer -:Copyright: Copyright (c) 2014 Jeff Forcier +:Copyright: Copyright (c) 2013-2014 Jeff Forcier :License: LGPL :Homepage: https://github.com/paramiko/paramiko/ :API docs: http://docs.paramiko.org -- cgit v1.2.3 From 337f4432d3aef1230ecb588dace0afd445a262c6 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Thu, 13 Mar 2014 21:06:57 -0700 Subject: README py3 update --- README | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 005fd6f3..9305bfb3 100644 --- a/README +++ b/README @@ -34,7 +34,8 @@ that should have come with this archive. Requirements ------------ - - python 2.6 or better + - Python 2.6 or better - this includes Python + 3.3 and higher as well. - pycrypto 2.1 or better - ecdsa 0.9 or better -- cgit v1.2.3 From 23c03b812242736bbfa1bf2e7780911ff180aaae Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Sun, 25 May 2014 14:57:58 -0700 Subject: We support 3.2 --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 9305bfb3..61c5c852 100644 --- a/README +++ b/README @@ -35,7 +35,7 @@ Requirements ------------ - Python 2.6 or better - this includes Python - 3.3 and higher as well. + 3.2 and higher as well. - pycrypto 2.1 or better - ecdsa 0.9 or better -- cgit v1.2.3 From fac347718a69179ba9404d5f5e825798f4ee9379 Mon Sep 17 00:00:00 2001 From: Jeff Forcier Date: Fri, 2 Jan 2015 14:24:31 -0800 Subject: Happy new year --- README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README') diff --git a/README b/README index 61c5c852..a645b140 100644 --- a/README +++ b/README @@ -5,7 +5,7 @@ paramiko :Paramiko: Python SSH module :Copyright: Copyright (c) 2003-2009 Robey Pointer -:Copyright: Copyright (c) 2013-2014 Jeff Forcier +:Copyright: Copyright (c) 2013-2015 Jeff Forcier :License: LGPL :Homepage: https://github.com/paramiko/paramiko/ :API docs: http://docs.paramiko.org -- cgit v1.2.3