Skip to content

Commit

Permalink
Fix package_data for Python2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroSteiner committed May 18, 2017
1 parent 0d66798 commit 4a2a9ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/termineter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

from __future__ import unicode_literals

__version__ = '0.2.6'
__version__ = '0.2.7'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
package_dir={'': 'lib'},
packages=find_packages('lib'),
package_data={
'': ['data/*'],
(b'' if sys.version_info < (3,) else ''): ['data/*'],
},
classifiers=(
b'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 4a2a9ad

Please sign in to comment.