summaryrefslogtreecommitdiff
path: root/paramiko/__init__.py
diff options
context:
space:
mode:
authorScott Maxwell <scott@codecobblers.com>2013-11-19 12:08:13 -0800
committerScott Maxwell <scott@codecobblers.com>2013-11-19 12:08:13 -0800
commit103d056a779d891ede6653f4b205a4b1dfad22e9 (patch)
tree1a38e42bb9a983a4371884d669c728283be50813 /paramiko/__init__.py
parent6d75c75e643c3a109075e86e72b08221c76088cc (diff)
downloadparamiko-103d056a779d891ede6653f4b205a4b1dfad22e9.tar.gz
Remove Python 2.5 from travis and fix minimum required version in init and README
Diffstat (limited to 'paramiko/__init__.py')
-rw-r--r--paramiko/__init__.py6
1 files changed, 3 insertions, 3 deletions
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<mailto: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 <jeff@bitprophet.org>"