From 186a19ee0a159b8b1db2c7523e15bec922300bcb Mon Sep 17 00:00:00 2001 From: Marko Ristin Date: Fri, 9 Oct 2020 22:34:43 +0200 Subject: [PATCH] Added support for Python 3.7 and 3.8 (#65) This patch adds support for Python 3.7 and 3.8 by integrating this Python versions into the continious integration. --- .travis.yml | 2 ++ setup.py | 9 ++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 37282fe..2820a5e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,8 @@ language: python python: - "3.5" - "3.6" + - "3.7" + - "3.8" branches: only: - master diff --git a/setup.py b/setup.py index 30ff988..ad6d345 100644 --- a/setup.py +++ b/setup.py @@ -24,11 +24,10 @@ author='Marko Ristin', author_email='marko.ristin@gmail.com', classifiers=[ - 'Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', + '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' ], license='License :: OSI Approved :: MIT License', keywords='ssh sftp spur paramiko execute remote commands modify files',