Skip to content

Commit

Permalink
Added support for Python 3.7 and 3.8 (#65)
Browse files Browse the repository at this point in the history
This patch adds support for Python 3.7 and 3.8 by integrating this
Python versions into the continious integration.
  • Loading branch information
mristin committed Oct 9, 2020
1 parent da0d268 commit 186a19e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -2,6 +2,8 @@ language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
branches:
only:
- master
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Expand Up @@ -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',
Expand Down

0 comments on commit 186a19e

Please sign in to comment.