Remove unicode_literal from plugins setup.py
There is a bug in Py2 setuptools where the build fails if unicode dict keys are passed to package_data: `package_data must be a dictionary mapping package names to lists of wildcard patterns` The easiest workaround is to remove unicode_literals use in setup.py as it is not that important.
This commit is contained in:
parent
d75afc007d
commit
49e5611f65
|
@ -13,8 +13,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'AutoAdd'
|
||||
|
|
|
@ -7,8 +7,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'Blocklist'
|
||||
|
|
|
@ -7,8 +7,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'Execute'
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'Extractor'
|
||||
|
|
|
@ -7,8 +7,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'Label'
|
||||
|
|
|
@ -12,8 +12,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'Notifications'
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'Scheduler'
|
||||
|
|
|
@ -12,8 +12,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'Stats'
|
||||
|
|
|
@ -12,8 +12,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'Toggle'
|
||||
|
|
|
@ -11,8 +11,6 @@
|
|||
# See LICENSE for more details.
|
||||
#
|
||||
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
__plugin_name__ = 'WebUi'
|
||||
|
|
Loading…
Reference in New Issue