Remove Python 2.5 from travis and fix minimum required version in init and README
This commit is contained in:
parent
6d75c75e64
commit
103d056a77
|
@ -1,6 +1,5 @@
|
||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
- "2.5"
|
|
||||||
- "2.6"
|
- "2.6"
|
||||||
- "2.7"
|
- "2.7"
|
||||||
- "3.2"
|
- "3.2"
|
||||||
|
|
4
README
4
README
|
@ -15,7 +15,7 @@ What
|
||||||
----
|
----
|
||||||
|
|
||||||
"paramiko" is a combination of the esperanto words for "paranoid" and
|
"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.
|
for secure (encrypted and authenticated) connections to remote machines.
|
||||||
unlike SSL (aka TLS), SSH2 protocol does not require hierarchical
|
unlike SSL (aka TLS), SSH2 protocol does not require hierarchical
|
||||||
certificates signed by a powerful central authority. you may know SSH2 as
|
certificates signed by a powerful central authority. you may know SSH2 as
|
||||||
|
@ -34,7 +34,7 @@ that should have come with this archive.
|
||||||
Requirements
|
Requirements
|
||||||
------------
|
------------
|
||||||
|
|
||||||
- python 2.5 or better <http://www.python.org/>
|
- python 2.6 or better <http://www.python.org/>
|
||||||
- pycrypto 2.1 or better <https://www.dlitz.net/software/pycrypto/>
|
- pycrypto 2.1 or better <https://www.dlitz.net/software/pycrypto/>
|
||||||
|
|
||||||
If you have setuptools, you can build and install paramiko and all its
|
If you have setuptools, you can build and install paramiko and all its
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
"""
|
"""
|
||||||
I{Paramiko} (a combination of the esperanto words for "paranoid" and "friend")
|
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
|
secure (encrypted and authenticated) connections to remote machines. Unlike
|
||||||
SSL (aka TLS), the SSH2 protocol does not require hierarchical certificates
|
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
|
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
|
import sys
|
||||||
|
|
||||||
if sys.version_info < (2, 5):
|
if sys.version_info < (2, 6):
|
||||||
raise RuntimeError('You need python 2.5+ for this module.')
|
raise RuntimeError('You need python 2.6+ for this module.')
|
||||||
|
|
||||||
|
|
||||||
__author__ = "Jeff Forcier <jeff@bitprophet.org>"
|
__author__ = "Jeff Forcier <jeff@bitprophet.org>"
|
||||||
|
|
Loading…
Reference in New Issue