Skip to content

Commit c7e31e7

Browse files
committed
fixing emoji==1.7.0 because 2.0.0 introduces breaking changes
1 parent ba7c730 commit c7e31e7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

emoji_translate/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
__all__ = [
1212
'Translator'
1313
]
14-
__version__ = '0.1.0'
14+
__version__ = '0.1.1'
1515
__author__ = 'Fabrice Harel-Canada'
1616
__email__ = '[email protected]'
1717
__source__ = 'https://github.com/fabriceyhc/emoji_translate'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
long_description=long_description,
5353
long_description_content_type='text/markdown',
5454
packages=setuptools.find_namespace_packages(),
55-
install_requires=['emoji', 'pandas', 'numpy'],
55+
install_requires=['emoji==1.7.0', 'pandas', 'numpy'],
5656
url=source,
5757
version=version,
5858
zip_safe=True,

0 commit comments

Comments
 (0)