diff options
author | Jeff Forcier <jeff@bitprophet.org> | 2017-10-10 15:17:44 -0700 |
---|---|---|
committer | Jeff Forcier <jeff@bitprophet.org> | 2017-10-10 15:17:44 -0700 |
commit | 5fd5cfb0b176af6740f141abfb9291ef7a5d9618 (patch) | |
tree | 0fc36371b701cc293de92612e939c36ab50cfdeb | |
parent | eea4f62f0fb5a14eece79565145fb5589008c7e1 (diff) |
This explicit Python interpreter version check predates me.
I don't do such a thing elsewhere, last I looked, so let's just nuke it
now that we're in the throes of another version changeup.
-rw-r--r-- | paramiko/__init__.py | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/paramiko/__init__.py b/paramiko/__init__.py index bdc91d51..c4c69a45 100644 --- a/paramiko/__init__.py +++ b/paramiko/__init__.py @@ -19,15 +19,6 @@ # flake8: noqa import sys from paramiko._version import __version__, __version_info__ - -if sys.version_info < (2, 6): - raise RuntimeError('You need Python 2.6+ for this module.') - - -__author__ = "Jeff Forcier <jeff@bitprophet.org>" -__license__ = "GNU Lesser General Public License (LGPL)" - - from paramiko.transport import SecurityOptions, Transport from paramiko.client import ( SSHClient, MissingHostKeyPolicy, AutoAddPolicy, RejectPolicy, @@ -76,6 +67,10 @@ from paramiko.sftp import ( from paramiko.common import io_sleep + +__author__ = "Jeff Forcier <jeff@bitprophet.org>" +__license__ = "GNU Lesser General Public License (LGPL)" + __all__ = [ 'Transport', 'SSHClient', |