From ef49dbc32f1c7019a13eaa990302214016144224 Mon Sep 17 00:00:00 2001 From: Anurag Kumar Date: Sun, 9 Jan 2022 09:40:10 +0530 Subject: [PATCH 1/2] updated classifiers added support for python version 3.7, 3.8, 3.9, 3.10 --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index afbef584..5b5c5f1b 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,10 @@ 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', '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', ], test_suite="test_httpbin", packages=find_packages(), From 04850634dd9b5be0c873303873567269676fe960 Mon Sep 17 00:00:00 2001 From: Anurag Kumar Date: Sun, 9 Jan 2022 09:41:29 +0530 Subject: [PATCH 2/2] Update tox.ini updated envlist --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 8495eb81..03bd94b7 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py36,py37 +envlist = py27,py36,py37,py38,py39,py310 [testenv] commands=python test_httpbin.py