mirror of https://github.com/huashengdun/webssh
Support Python 3.9
parent
685e1a7df1
commit
97e6d25556
|
@ -8,6 +8,7 @@ python:
|
||||||
- "3.6"
|
- "3.6"
|
||||||
- "3.7"
|
- "3.7"
|
||||||
- "3.8"
|
- "3.8"
|
||||||
|
- "3.9"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- pip install -r requirements.txt
|
- pip install -r requirements.txt
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
paramiko==2.7.2
|
paramiko==2.10.4
|
||||||
tornado==5.1.1; python_version < '3.5'
|
tornado==5.1.1; python_version < '3.5'
|
||||||
tornado==6.0.4; python_version >= '3.5'
|
tornado==6.1.0; python_version >= '3.5'
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -32,6 +32,7 @@ setup(
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
'Programming Language :: Python :: 3.7',
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
|
'Programming Language :: Python :: 3.9',
|
||||||
],
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'tornado>=4.5.0',
|
'tornado>=4.5.0',
|
||||||
|
|
Loading…
Reference in New Issue