From 80a4380342f6b61d921ae574301d8404f49768f9 Mon Sep 17 00:00:00 2001 From: Marko Ristin Date: Sat, 10 Oct 2020 09:13:51 +0200 Subject: [PATCH] Bumped to 2.3.4 (#67) * Added support for Python 3.7 and 3.8, respectively. --- CHANGELOG.rst | 8 +++++--- setup.py | 4 +++- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e83f34e..8288a47 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,13 +1,15 @@ -2.3.3 +2.3.4 ===== -* Fixed live tests for windows +* Added support for Python 3.7 and 3.8, respectively. +2.3.3 +===== +* Fixed live tests for Windows 2.3.2 ===== * Added separate named temporary files for Windows compatibility - 2.3.1 ===== * Set the default of ``cwd`` argument to ``None`` instead of ``""`` diff --git a/setup.py b/setup.py index ad6d345..d2f30e7 100644 --- a/setup.py +++ b/setup.py @@ -17,18 +17,20 @@ setup( name='spurplus', - version='2.3.3', + version='2.3.4', # Do not forget to update the changelog! description='Manage remote machines and file operations over SSH.', long_description=long_description, url='http://github.com/Parquery/spurplus', author='Marko Ristin', author_email='marko.ristin@gmail.com', + # yapf: disable classifiers=[ 'Development Status :: 5 - Production/Stable', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8' ], + # yapf: enable license='License :: OSI Approved :: MIT License', keywords='ssh sftp spur paramiko execute remote commands modify files', packages=find_packages(exclude=['tests']),