Skip to content

Commit 501bf29

Browse files
author
Carl
committed
Changing classifiers to be list rather than tuble to avoid upload errors
1 parent 737e8f8 commit 501bf29

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
_short_description = "Utilities and helpers for writing Pylint plugins"
88

9-
_classifiers = (
9+
_classifiers = [
1010
'Development Status :: 5 - Production/Stable',
1111
'Environment :: Console',
1212
'Intended Audience :: Developers',
@@ -16,7 +16,7 @@
1616
'Programming Language :: Python :: 3.4',
1717
'Programming Language :: Python :: 3.5',
1818
'Programming Language :: Python :: 3.6',
19-
)
19+
]
2020

2121
setup(
2222
name='pylint-plugin-utils',

0 commit comments

Comments
 (0)