Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

from setuptools import setup

if sys.version < '3.8':
print("This version is not supported.")
if sys.version_info < (3, 8):
print('This version is not supported')
sys.exit(1)

with open('README.rst') as f:
Expand All @@ -23,7 +23,7 @@
version='0.5.3',
url='http://www.github.com/sk364/codechef-cli',
keywords="codechefcli codechef cli programming competitive-programming competitive-coding",
license='GNU','MIT',
license='GNU',
author='Sachin Kukreja',
author_email='skad5455@gmail.com',
description='CodeChef Command Line Interface',
Expand Down