From 04a9bd5efff535ab5d80b2dbbedfe146dea4f86c Mon Sep 17 00:00:00 2001 From: Sheng Date: Tue, 28 Feb 2023 19:30:29 +0800 Subject: [PATCH] Support for Python 3.8+ --- .travis.yml | 2 ++ README.md | 2 +- README.rst | 2 +- setup.py | 8 ++------ 4 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1481971..a053519 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,6 +4,8 @@ language: python python: - "3.8" - "3.9" + - "3.10" + - "3.11" install: - pip install -r requirements.txt diff --git a/README.md b/README.md index ad77175..8d91036 100644 --- a/README.md +++ b/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 diff --git a/README.rst b/README.rst index f435d15..dd5771a 100644 --- a/README.rst +++ b/README.rst @@ -41,7 +41,7 @@ How it works Requirements ~~~~~~~~~~~~ -- Python 2.7/3.4+ +- Python 3.8+ Quickstart ~~~~~~~~~~ diff --git a/setup.py b/setup.py index c8d7f59..dd211fb 100644 --- a/setup.py +++ b/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',