Skip to content

Commit 9840ffd

Browse files
authored
Bumped minimum dependency versions (#350)
* Bumped minimum dependency versions * Updated CI cfg * Updated changelog
1 parent 5cea5c1 commit 9840ffd

File tree

4 files changed

+15
-10
lines changed

4 files changed

+15
-10
lines changed

.circleci/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
- run:
2020
name: Deps
2121
command: |
22+
sudo apt-get update
2223
sudo apt-get install openssh-server --fix-missing
2324
- run:
2425
command: |

Changelog.rst

+8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change Log
22
============
33

4+
2.11.0
5+
+++++++
6+
7+
Changes
8+
--------
9+
10+
* Updated minimum required versions for `ssh2-python` and `ssh-python`.
11+
412
2.10.0
513
++++++
614

requirements.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
gevent>=1.3.0
2-
ssh2-python>=0.27.0
3-
ssh-python>=0.9.0
2+
ssh2-python>=1.0.0
3+
ssh-python>=0.10.0

setup.py

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (C) 2014-2020 Panos Kittenis.
1+
# Copyright (C) 2014-2022 Panos Kittenis.
22
#
33
# This library is free software; you can redistribute it and/or
44
# modify it under the terms of the GNU Lesser General Public
@@ -13,10 +13,7 @@
1313
# License along with this library; if not, write to the Free Software
1414
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1515

16-
import os
17-
import platform
1816
from setuptools import setup, find_packages
19-
from platform import python_version
2017

2118
import versioneer
2219

@@ -38,20 +35,19 @@
3835
'*.tests', '*.tests.*')
3936
),
4037
install_requires=[
41-
'gevent>=1.3.0', 'ssh2-python>=0.22.0', 'ssh-python>=0.9.0'],
38+
'gevent>=1.3.0', 'ssh2-python', 'ssh-python'],
4239
classifiers=[
4340
'Development Status :: 5 - Production/Stable',
4441
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
4542
'Intended Audience :: Developers',
4643
'Operating System :: OS Independent',
4744
'Programming Language :: Python',
4845
'Programming Language :: Python :: 3',
49-
'Programming Language :: Python :: 3.4',
50-
'Programming Language :: Python :: 3.5',
5146
'Programming Language :: Python :: 3.6',
5247
'Programming Language :: Python :: 3.7',
5348
'Programming Language :: Python :: 3.8',
5449
'Programming Language :: Python :: 3.9',
50+
'Programming Language :: Python :: 3.10',
5551
'Topic :: System :: Networking',
5652
'Topic :: Software Development :: Libraries',
5753
'Topic :: Software Development :: Libraries :: Python Modules',
@@ -60,4 +56,4 @@
6056
'Operating System :: Microsoft :: Windows',
6157
'Operating System :: MacOS :: MacOS X',
6258
],
63-
)
59+
)

0 commit comments

Comments
 (0)