Skip to content

Commit

Permalink
Bumped minimum dependency versions (#350)
Browse files Browse the repository at this point in the history
* Bumped minimum dependency versions
* Updated CI cfg
* Updated changelog
  • Loading branch information
pkittenis authored Jul 31, 2022
1 parent 5cea5c1 commit 9840ffd
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 10 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- run:
name: Deps
command: |
sudo apt-get update
sudo apt-get install openssh-server --fix-missing
- run:
command: |
Expand Down
8 changes: 8 additions & 0 deletions Changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Change Log
============

2.11.0
+++++++

Changes
--------

* Updated minimum required versions for `ssh2-python` and `ssh-python`.

2.10.0
++++++

Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
gevent>=1.3.0
ssh2-python>=0.27.0
ssh-python>=0.9.0
ssh2-python>=1.0.0
ssh-python>=0.10.0
12 changes: 4 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (C) 2014-2020 Panos Kittenis.
# Copyright (C) 2014-2022 Panos Kittenis.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
Expand All @@ -13,10 +13,7 @@
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

import os
import platform
from setuptools import setup, find_packages
from platform import python_version

import versioneer

Expand All @@ -38,20 +35,19 @@
'*.tests', '*.tests.*')
),
install_requires=[
'gevent>=1.3.0', 'ssh2-python>=0.22.0', 'ssh-python>=0.9.0'],
'gevent>=1.3.0', 'ssh2-python', 'ssh-python'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: System :: Networking',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
Expand All @@ -60,4 +56,4 @@
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
],
)
)

0 comments on commit 9840ffd

Please sign in to comment.