Merge pull request #146 from hugovk/rm-eol

Drop EOL Python 2.6 and 3.3
This commit is contained in:
Jan Vlčinský
2018-04-26 17:34:50 +02:00
committed by GitHub
+3 -3
View File
@@ -22,7 +22,7 @@ class PublishCommand(Command):
@staticmethod
def status(s):
"""Prints things in bold."""
print('\033[1m{0}\033[0m'.format(s))
print('\033[1m{}\033[0m'.format(s))
def initialize_options(self):
pass
@@ -38,7 +38,7 @@ class PublishCommand(Command):
pass
self.status('Building Source and Wheel (universal) distribution...')
os.system('{0} setup.py sdist bdist_wheel --universal'.format(sys.executable))
os.system('{} setup.py sdist bdist_wheel --universal'.format(sys.executable))
self.status('Uploading the package to PyPi via Twine...')
os.system('twine upload dist/*')
@@ -85,9 +85,9 @@ setup(
'Natural Language :: English',
'License :: OSI Approved :: ISC License (ISCL)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'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',