Browse Source

Support for Python 3.8+

pull/213/merge
Sheng 2 years ago
parent
commit
04a9bd5eff
  1. 2
      .travis.yml
  2. 2
      README.md
  3. 2
      README.rst
  4. 8
      setup.py

2
.travis.yml

@ -4,6 +4,8 @@ language: python
python: python:
- "3.8" - "3.8"
- "3.9" - "3.9"
- "3.10"
- "3.11"
install: install:
- pip install -r requirements.txt - pip install -r requirements.txt

2
README.md

@ -37,7 +37,7 @@ A simple web application to be used as an ssh client to connect to your ssh serv
### Requirements ### Requirements
* Python 2.7/3.4+ * Python 3.8+
### Quickstart ### Quickstart

2
README.rst

@ -41,7 +41,7 @@ How it works
Requirements Requirements
~~~~~~~~~~~~ ~~~~~~~~~~~~
- Python 2.7/3.4+ - Python 3.8+
Quickstart Quickstart
~~~~~~~~~~ ~~~~~~~~~~

8
setup.py

@ -24,15 +24,11 @@ setup(
include_package_data=True, include_package_data=True,
classifiers=[ classifiers=[
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', '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.8',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
], ],
install_requires=[ install_requires=[
'tornado>=4.5.0', 'tornado>=4.5.0',

Loading…
Cancel
Save