From 786ae125802e5d743b5a3f6d7e4534df842a8ca8 Mon Sep 17 00:00:00 2001 From: Vineet Naik Date: Sat, 13 Jun 2020 12:08:41 +0530 Subject: [PATCH] Update supported python versions in setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index bcad057..8d5c613 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( long_description=long_desc, install_requires=install_requires, extras_require={'graphviz': ['graphviz']}, - python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*', + python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*', py_modules=['pipdeptree'], entry_points={ 'console_scripts': [ @@ -43,9 +43,10 @@ setup( 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.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', ] )