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:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
install:
- 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
* Python 2.7/3.4+
* Python 3.8+
### Quickstart

2
README.rst

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

8
setup.py

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

Loading…
Cancel
Save