Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package python-emoji for openSUSE:Factory 
checked in at 2021-09-20 23:32:55
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/python-emoji (Old)
 and      /work/SRC/openSUSE:Factory/.python-emoji.new.1899 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "python-emoji"

Mon Sep 20 23:32:55 2021 rev:11 rq:920066 version:1.5.0

Changes:
--------
--- /work/SRC/openSUSE:Factory/python-emoji/python-emoji.changes        
2021-08-06 22:45:28.569996588 +0200
+++ /work/SRC/openSUSE:Factory/.python-emoji.new.1899/python-emoji.changes      
2021-09-20 23:34:30.443273957 +0200
@@ -1,0 +2,7 @@
+Sat Sep 18 10:19:22 UTC 2021 - Matthias Bach <ma...@marix.org> - 1.5.0
+
+- Update to 1.5.0
+  * Emojis of English version updated to the Emoji Charts v14.0
+- Drop obsolete `fix-python2.patch` that has been merged upstream.
+
+-------------------------------------------------------------------

Old:
----
  emoji-1.4.2.tar.gz
  fix-python2.patch

New:
----
  emoji-1.5.0.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ python-emoji.spec ++++++
--- /var/tmp/diff_new_pack.jPTMYV/_old  2021-09-20 23:34:30.875274490 +0200
+++ /var/tmp/diff_new_pack.jPTMYV/_new  2021-09-20 23:34:30.875274490 +0200
@@ -18,14 +18,13 @@
 
 
 Name:           python-emoji
-Version:        1.4.2
+Version:        1.5.0
 Release:        0
 Summary:        Emoji for Python
 License:        BSD-3-Clause
 Group:          Development/Languages/Python
 URL:            https://github.com/carpedm20/emoji/
 Source:         
https://files.pythonhosted.org/packages/source/e/emoji/emoji-%{version}.tar.gz
-Patch1:         fix-python2.patch
 BuildRequires:  %{python_module pytest}
 BuildRequires:  %{python_module setuptools}
 BuildRequires:  fdupes

++++++ emoji-1.4.2.tar.gz -> emoji-1.5.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-1.4.2/CHANGES.md new/emoji-1.5.0/CHANGES.md
--- old/emoji-1.4.2/CHANGES.md  2021-07-30 07:48:27.000000000 +0200
+++ new/emoji-1.5.0/CHANGES.md  2021-09-17 06:32:11.000000000 +0200
@@ -1,6 +1,12 @@
 emoji
 =====
 
+1.5.0
+-----
+* Emojis of English version updated to the Emoji Charts v14.0
+* Current count of emojis - 3633
+* Fix matching of non-ASCII emoji names on Python 2
+
 1.4.2
 -----
 * Delimiter for German time naming changed from ":" to "."
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-1.4.2/PKG-INFO new/emoji-1.5.0/PKG-INFO
--- old/emoji-1.4.2/PKG-INFO    2021-07-30 08:02:01.769486200 +0200
+++ new/emoji-1.5.0/PKG-INFO    2021-09-17 07:11:12.263405800 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: emoji
-Version: 1.4.2
+Version: 1.5.0
 Summary: Emoji for Python
 Home-page: https://github.com/carpedm20/emoji/
 Author: Taehoon Kim, Kevin Wurster and Tahir Jalilov
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-1.4.2/emoji/__init__.py 
new/emoji-1.5.0/emoji/__init__.py
--- old/emoji-1.4.2/emoji/__init__.py   2021-07-30 07:48:27.000000000 +0200
+++ new/emoji-1.5.0/emoji/__init__.py   2021-09-17 06:32:11.000000000 +0200
@@ -29,7 +29,7 @@
     'EMOJI_ALIAS_UNICODE_ENGLISH', 'UNICODE_EMOJI_ALIAS_ENGLISH',
 ]
 
-__version__ = '1.4.2'
+__version__ = '1.5.0'
 __author__ = 'Taehoon Kim, Kevin Wurster and Tahir Jalilov'
 __email__ = 'carped...@gmail.com'
 # and wurst...@gmail.com, tahir.jali...@gmail.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-1.4.2/emoji/core.py 
new/emoji-1.5.0/emoji/core.py
--- old/emoji-1.4.2/emoji/core.py       2021-07-18 10:36:26.000000000 +0200
+++ new/emoji-1.5.0/emoji/core.py       2021-08-07 14:31:50.000000000 +0200
@@ -55,7 +55,7 @@
         Python is fun ?????? #red heart, not black heart
     """
     EMOJI_UNICODE = unicode_codes.EMOJI_UNICODE[language]
-    pattern = re.compile(u'(%s[\\w\\-&.?????????()!#*+????,/]+%s)' % 
delimiters)
+    pattern = re.compile(u'(%s[\\w\\-&.?????????()!#*+????,/]+%s)' % 
delimiters, flags=re.UNICODE)
 
     def replace(match):
         mg = match.group(1).replace(delimiters[0], _DEFAULT_DELIMITER).replace(
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-1.4.2/emoji/unicode_codes/en.py 
new/emoji-1.5.0/emoji/unicode_codes/en.py
--- old/emoji-1.4.2/emoji/unicode_codes/en.py   2021-01-27 16:07:14.000000000 
+0100
+++ new/emoji-1.5.0/emoji/unicode_codes/en.py   2021-09-17 06:32:11.000000000 
+0200
@@ -456,6 +456,7 @@
     u':battery:': u'\U0001F50B',
     u':beach_with_umbrella:': u'\U0001F3D6',
     u':beaming_face_with_smiling_eyes:': u'\U0001F601',
+    u':beans:': u'\U0001FAD8',
     u':bear:': u'\U0001F43B',
     u':beating_heart:': u'\U0001F493',
     u':beaver:': u'\U0001F9AB',
@@ -475,6 +476,7 @@
     u':bird:': u'\U0001F426',
     u':birthday_cake:': u'\U0001F382',
     u':bison:': u'\U0001F9AC',
+    u':biting_lip:': u'\U0001FAE6',
     u':black_cat:': u'\U0001F408\U0000200D\U00002B1B',
     u':black_circle:': u'\U000026AB',
     u':black_flag:': u'\U0001F3F4',
@@ -531,6 +533,7 @@
     u':brown_heart:': u'\U0001F90E',
     u':brown_square:': u'\U0001F7EB',
     u':bubble_tea:': u'\U0001F9CB',
+    u':bubbles:': u'\U0001FAE7',
     u':bucket:': u'\U0001FAA3',
     u':bug:': u'\U0001F41B',
     u':building_construction:': u'\U0001F3D7',
@@ -662,6 +665,7 @@
     u':cookie:': u'\U0001F36A',
     u':cooking:': u'\U0001F373',
     u':copyright:': u'\U000000A9',
+    u':coral:': u'\U0001FAB8',
     u':couch_and_lamp:': u'\U0001F6CB',
     u':counterclockwise_arrows_button:': u'\U0001F504',
     u':couple_with_heart:': u'\U0001F491',
@@ -790,6 +794,7 @@
     u':crossed_flags:': u'\U0001F38C',
     u':crossed_swords:': u'\U00002694',
     u':crown:': u'\U0001F451',
+    u':crutch:': u'\U0001FA7C',
     u':crying_cat:': u'\U0001F63F',
     u':crying_face:': u'\U0001F622',
     u':crystal_ball:': u'\U0001F52E',
@@ -857,6 +862,7 @@
     u':dollar_banknote:': u'\U0001F4B5',
     u':dolphin:': u'\U0001F42C',
     u':door:': u'\U0001F6AA',
+    u':dotted_line_face:': u'\U0001FAE5',
     u':dotted_six-pointed_star:': u'\U0001F52F',
     u':double_curly_loop:': u'\U000027BF',
     u':double_exclamation_mark:': u'\U0000203C',
@@ -910,6 +916,7 @@
     u':elf_medium-dark_skin_tone:': u'\U0001F9DD\U0001F3FE',
     u':elf_medium-light_skin_tone:': u'\U0001F9DD\U0001F3FC',
     u':elf_medium_skin_tone:': u'\U0001F9DD\U0001F3FD',
+    u':empty_nest:': u'\U0001FAB9',
     u':envelope:': u'\U00002709',
     u':envelope_with_arrow:': u'\U0001F4E9',
     u':euro_banknote:': u'\U0001F4B6',
@@ -923,15 +930,20 @@
     u':eyes:': u'\U0001F440',
     u':face_blowing_a_kiss:': u'\U0001F618',
     u':face_exhaling:': u'\U0001F62E\U0000200D\U0001F4A8',
+    u':face_holding_back_tears:': u'\U0001F979',
     u':face_in_clouds:': u'\U0001F636\U0000200D\U0001F32B\U0000FE0F',
     u':face_savoring_food:': u'\U0001F60B',
     u':face_screaming_in_fear:': u'\U0001F631',
     u':face_vomiting:': u'\U0001F92E',
+    u':face_with_crossed-out_eyes:': u'\U0001F635',
+    u':face_with_diagonal_mouth:': u'\U0001FAE4',
     u':face_with_hand_over_mouth:': u'\U0001F92D',
     u':face_with_head-bandage:': u'\U0001F915',
     u':face_with_medical_mask:': u'\U0001F637',
     u':face_with_monocle:': u'\U0001F9D0',
+    u':face_with_open_eyes_and_hand_over_mouth:': u'\U0001FAE2',
     u':face_with_open_mouth:': u'\U0001F62E',
+    u':face_with_peeking_eye:': u'\U0001FAE3',
     u':face_with_raised_eyebrow:': u'\U0001F928',
     u':face_with_rolling_eyes:': u'\U0001F644',
     u':face_with_spiral_eyes:': u'\U0001F635\U0000200D\U0001F4AB',
@@ -1130,6 +1142,7 @@
     u':hammer:': u'\U0001F528',
     u':hammer_and_pick:': u'\U00002692',
     u':hammer_and_wrench:': u'\U0001F6E0',
+    u':hamsa:': u'\U0001FAAC',
     u':hamster:': u'\U0001F439',
     u':hand_with_fingers_splayed:': u'\U0001F590',
     u':hand_with_fingers_splayed_dark_skin_tone:': u'\U0001F590\U0001F3FF',
@@ -1137,8 +1150,39 @@
     u':hand_with_fingers_splayed_medium-dark_skin_tone:': 
u'\U0001F590\U0001F3FE',
     u':hand_with_fingers_splayed_medium-light_skin_tone:': 
u'\U0001F590\U0001F3FC',
     u':hand_with_fingers_splayed_medium_skin_tone:': u'\U0001F590\U0001F3FD',
+    u':hand_with_index_finger_and_thumb_crossed:': u'\U0001FAF0',
+    u':hand_with_index_finger_and_thumb_crossed_dark_skin_tone:': 
u'\U0001FAF0\U0001F3FF',
+    u':hand_with_index_finger_and_thumb_crossed_light_skin_tone:': 
u'\U0001FAF0\U0001F3FB',
+    u':hand_with_index_finger_and_thumb_crossed_medium-dark_skin_tone:': 
u'\U0001FAF0\U0001F3FE',
+    u':hand_with_index_finger_and_thumb_crossed_medium-light_skin_tone:': 
u'\U0001FAF0\U0001F3FC',
+    u':hand_with_index_finger_and_thumb_crossed_medium_skin_tone:': 
u'\U0001FAF0\U0001F3FD',
     u':handbag:': u'\U0001F45C',
     u':handshake:': u'\U0001F91D',
+    u':handshake_dark_skin_tone:': u'\U0001F91D\U0001F3FF',
+    u':handshake_dark_skin_tone_light_skin_tone:': 
u'\U0001FAF1\U0001F3FF\U0000200D\U0001FAF2\U0001F3FB',
+    u':handshake_dark_skin_tone_medium-dark_skin_tone:': 
u'\U0001FAF1\U0001F3FF\U0000200D\U0001FAF2\U0001F3FE',
+    u':handshake_dark_skin_tone_medium-light_skin_tone:': 
u'\U0001FAF1\U0001F3FF\U0000200D\U0001FAF2\U0001F3FC',
+    u':handshake_dark_skin_tone_medium_skin_tone:': 
u'\U0001FAF1\U0001F3FF\U0000200D\U0001FAF2\U0001F3FD',
+    u':handshake_light_skin_tone:': u'\U0001F91D\U0001F3FB',
+    u':handshake_light_skin_tone_dark_skin_tone:': 
u'\U0001FAF1\U0001F3FB\U0000200D\U0001FAF2\U0001F3FF',
+    u':handshake_light_skin_tone_medium-dark_skin_tone:': 
u'\U0001FAF1\U0001F3FB\U0000200D\U0001FAF2\U0001F3FE',
+    u':handshake_light_skin_tone_medium-light_skin_tone:': 
u'\U0001FAF1\U0001F3FB\U0000200D\U0001FAF2\U0001F3FC',
+    u':handshake_light_skin_tone_medium_skin_tone:': 
u'\U0001FAF1\U0001F3FB\U0000200D\U0001FAF2\U0001F3FD',
+    u':handshake_medium-dark_skin_tone:': u'\U0001F91D\U0001F3FE',
+    u':handshake_medium-dark_skin_tone_dark_skin_tone:': 
u'\U0001FAF1\U0001F3FE\U0000200D\U0001FAF2\U0001F3FF',
+    u':handshake_medium-dark_skin_tone_light_skin_tone:': 
u'\U0001FAF1\U0001F3FE\U0000200D\U0001FAF2\U0001F3FB',
+    u':handshake_medium-dark_skin_tone_medium-light_skin_tone:': 
u'\U0001FAF1\U0001F3FE\U0000200D\U0001FAF2\U0001F3FC',
+    u':handshake_medium-dark_skin_tone_medium_skin_tone:': 
u'\U0001FAF1\U0001F3FE\U0000200D\U0001FAF2\U0001F3FD',
+    u':handshake_medium-light_skin_tone:': u'\U0001F91D\U0001F3FC',
+    u':handshake_medium-light_skin_tone_dark_skin_tone:': 
u'\U0001FAF1\U0001F3FC\U0000200D\U0001FAF2\U0001F3FF',
+    u':handshake_medium-light_skin_tone_light_skin_tone:': 
u'\U0001FAF1\U0001F3FC\U0000200D\U0001FAF2\U0001F3FB',
+    u':handshake_medium-light_skin_tone_medium-dark_skin_tone:': 
u'\U0001FAF1\U0001F3FC\U0000200D\U0001FAF2\U0001F3FE',
+    u':handshake_medium-light_skin_tone_medium_skin_tone:': 
u'\U0001FAF1\U0001F3FC\U0000200D\U0001FAF2\U0001F3FD',
+    u':handshake_medium_skin_tone:': u'\U0001F91D\U0001F3FD',
+    u':handshake_medium_skin_tone_dark_skin_tone:': 
u'\U0001FAF1\U0001F3FD\U0000200D\U0001FAF2\U0001F3FF',
+    u':handshake_medium_skin_tone_light_skin_tone:': 
u'\U0001FAF1\U0001F3FD\U0000200D\U0001FAF2\U0001F3FB',
+    u':handshake_medium_skin_tone_medium-dark_skin_tone:': 
u'\U0001FAF1\U0001F3FD\U0000200D\U0001FAF2\U0001F3FE',
+    u':handshake_medium_skin_tone_medium-light_skin_tone:': 
u'\U0001FAF1\U0001F3FD\U0000200D\U0001FAF2\U0001F3FC',
     u':hatching_chick:': u'\U0001F423',
     u':headphone:': u'\U0001F3A7',
     u':headstone:': u'\U0001FAA6',
@@ -1151,11 +1195,18 @@
     u':hear-no-evil_monkey:': u'\U0001F649',
     u':heart_decoration:': u'\U0001F49F',
     u':heart_exclamation:': u'\U00002763',
+    u':heart_hands:': u'\U0001FAF6',
+    u':heart_hands_dark_skin_tone:': u'\U0001FAF6\U0001F3FF',
+    u':heart_hands_light_skin_tone:': u'\U0001FAF6\U0001F3FB',
+    u':heart_hands_medium-dark_skin_tone:': u'\U0001FAF6\U0001F3FE',
+    u':heart_hands_medium-light_skin_tone:': u'\U0001FAF6\U0001F3FC',
+    u':heart_hands_medium_skin_tone:': u'\U0001FAF6\U0001F3FD',
     u':heart_on_fire:': u'\U00002764\U0000FE0F\U0000200D\U0001F525',
     u':heart_suit:': u'\U00002665',
     u':heart_with_arrow:': u'\U0001F498',
     u':heart_with_ribbon:': u'\U0001F49D',
     u':heavy_dollar_sign:': u'\U0001F4B2',
+    u':heavy_equals_sign:': u'\U0001F7F0',
     u':hedgehog:': u'\U0001F994',
     u':helicopter:': u'\U0001F681',
     u':herb:': u'\U0001F33F',
@@ -1192,7 +1243,6 @@
     u':house:': u'\U0001F3E0',
     u':house_with_garden:': u'\U0001F3E1',
     u':houses:': u'\U0001F3D8',
-    u':hugging_face:': u'\U0001F917',
     u':hundred_points:': u'\U0001F4AF',
     u':hushed_face:': u'\U0001F62F',
     u':hut:': u'\U0001F6D6',
@@ -1200,8 +1250,15 @@
     u':ice_cream:': u'\U0001F368',
     u':ice_hockey:': u'\U0001F3D2',
     u':ice_skate:': u'\U000026F8',
+    u':identification_card:': u'\U0001FAAA',
     u':inbox_tray:': u'\U0001F4E5',
     u':incoming_envelope:': u'\U0001F4E8',
+    u':index_pointing_at_the_viewer:': u'\U0001FAF5',
+    u':index_pointing_at_the_viewer_dark_skin_tone:': u'\U0001FAF5\U0001F3FF',
+    u':index_pointing_at_the_viewer_light_skin_tone:': u'\U0001FAF5\U0001F3FB',
+    u':index_pointing_at_the_viewer_medium-dark_skin_tone:': 
u'\U0001FAF5\U0001F3FE',
+    u':index_pointing_at_the_viewer_medium-light_skin_tone:': 
u'\U0001FAF5\U0001F3FC',
+    u':index_pointing_at_the_viewer_medium_skin_tone:': 
u'\U0001FAF5\U0001F3FD',
     u':index_pointing_up:': u'\U0000261D',
     u':index_pointing_up_dark_skin_tone:': u'\U0000261D\U0001F3FF',
     u':index_pointing_up_light_skin_tone:': u'\U0000261D\U0001F3FB',
@@ -1216,6 +1273,7 @@
     u':input_numbers:': u'\U0001F522',
     u':input_symbols:': u'\U0001F523',
     u':jack-o-lantern:': u'\U0001F383',
+    u':jar:': u'\U0001FAD9',
     u':jeans:': u'\U0001F456',
     u':joker:': u'\U0001F0CF',
     u':joystick:': u'\U0001F579',
@@ -1356,7 +1414,6 @@
     u':kitchen_knife:': u'\U0001F52A',
     u':kite:': u'\U0001FA81',
     u':kiwi_fruit:': u'\U0001F95D',
-    u':knocked-out_face:': u'\U0001F635',
     u':knot:': u'\U0001FAA2',
     u':koala:': u'\U0001F428',
     u':lab_coat:': u'\U0001F97C',
@@ -1385,6 +1442,12 @@
     u':left_arrow_curving_right:': u'\U000021AA',
     u':left_luggage:': u'\U0001F6C5',
     u':left_speech_bubble:': u'\U0001F5E8',
+    u':leftwards_hand:': u'\U0001FAF2',
+    u':leftwards_hand_dark_skin_tone:': u'\U0001FAF2\U0001F3FF',
+    u':leftwards_hand_light_skin_tone:': u'\U0001FAF2\U0001F3FB',
+    u':leftwards_hand_medium-dark_skin_tone:': u'\U0001FAF2\U0001F3FE',
+    u':leftwards_hand_medium-light_skin_tone:': u'\U0001FAF2\U0001F3FC',
+    u':leftwards_hand_medium_skin_tone:': u'\U0001FAF2\U0001F3FD',
     u':leg:': u'\U0001F9B5',
     u':leg_dark_skin_tone:': u'\U0001F9B5\U0001F3FF',
     u':leg_light_skin_tone:': u'\U0001F9B5\U0001F3FB',
@@ -1412,6 +1475,7 @@
     u':lollipop:': u'\U0001F36D',
     u':long_drum:': u'\U0001FA98',
     u':lotion_bottle:': u'\U0001F9F4',
+    u':lotus:': u'\U0001FAB7',
     u':loudly_crying_face:': u'\U0001F62D',
     u':loudspeaker:': u'\U0001F4E2',
     u':love-you_gesture:': u'\U0001F91F',
@@ -1422,6 +1486,7 @@
     u':love-you_gesture_medium_skin_tone:': u'\U0001F91F\U0001F3FD',
     u':love_hotel:': u'\U0001F3E9',
     u':love_letter:': u'\U0001F48C',
+    u':low_battery:': u'\U0001FAAB',
     u':luggage:': u'\U0001F9F3',
     u':lungs:': u'\U0001FAC1',
     u':lying_face:': u'\U0001F925',
@@ -1889,6 +1954,7 @@
     u':medium_skin_tone:': u'\U0001F3FD',
     u':megaphone:': u'\U0001F4E3',
     u':melon:': u'\U0001F348',
+    u':melting_face:': u'\U0001FAE0',
     u':memo:': u'\U0001F4DD',
     u':men_holding_hands:': u'\U0001F46C',
     u':men_holding_hands_dark_skin_tone:': u'\U0001F46C\U0001F3FF',
@@ -1955,6 +2021,7 @@
     u':minibus:': u'\U0001F690',
     u':minus:': u'\U00002796',
     u':mirror:': u'\U0001FA9E',
+    u':mirror_ball:': u'\U0001FAA9',
     u':moai:': u'\U0001F5FF',
     u':mobile_phone:': u'\U0001F4F1',
     u':mobile_phone_off:': u'\U0001F4F4',
@@ -2008,6 +2075,7 @@
     u':nazar_amulet:': u'\U0001F9FF',
     u':necktie:': u'\U0001F454',
     u':nerd_face:': u'\U0001F913',
+    u':nest_with_eggs:': u'\U0001FABA',
     u':nesting_dolls:': u'\U0001FA86',
     u':neutral_face:': u'\U0001F610',
     u':new_moon:': u'\U0001F311',
@@ -2113,7 +2181,19 @@
     u':page_with_curl:': u'\U0001F4C3',
     u':pager:': u'\U0001F4DF',
     u':paintbrush:': u'\U0001F58C',
+    u':palm_down_hand:': u'\U0001FAF3',
+    u':palm_down_hand_dark_skin_tone:': u'\U0001FAF3\U0001F3FF',
+    u':palm_down_hand_light_skin_tone:': u'\U0001FAF3\U0001F3FB',
+    u':palm_down_hand_medium-dark_skin_tone:': u'\U0001FAF3\U0001F3FE',
+    u':palm_down_hand_medium-light_skin_tone:': u'\U0001FAF3\U0001F3FC',
+    u':palm_down_hand_medium_skin_tone:': u'\U0001FAF3\U0001F3FD',
     u':palm_tree:': u'\U0001F334',
+    u':palm_up_hand:': u'\U0001FAF4',
+    u':palm_up_hand_dark_skin_tone:': u'\U0001FAF4\U0001F3FF',
+    u':palm_up_hand_light_skin_tone:': u'\U0001FAF4\U0001F3FB',
+    u':palm_up_hand_medium-dark_skin_tone:': u'\U0001FAF4\U0001F3FE',
+    u':palm_up_hand_medium-light_skin_tone:': u'\U0001FAF4\U0001F3FC',
+    u':palm_up_hand_medium_skin_tone:': u'\U0001FAF4\U0001F3FD',
     u':palms_up_together:': u'\U0001F932',
     u':palms_up_together_dark_skin_tone:': u'\U0001F932\U0001F3FF',
     u':palms_up_together_light_skin_tone:': u'\U0001F932\U0001F3FB',
@@ -2443,6 +2523,12 @@
     u':person_wearing_turban_medium-light_skin_tone:': u'\U0001F473\U0001F3FC',
     u':person_wearing_turban_medium_skin_tone:': u'\U0001F473\U0001F3FD',
     u':person_white_hair:': u'\U0001F9D1\U0000200D\U0001F9B3',
+    u':person_with_crown:': u'\U0001FAC5',
+    u':person_with_crown_dark_skin_tone:': u'\U0001FAC5\U0001F3FF',
+    u':person_with_crown_light_skin_tone:': u'\U0001FAC5\U0001F3FB',
+    u':person_with_crown_medium-dark_skin_tone:': u'\U0001FAC5\U0001F3FE',
+    u':person_with_crown_medium-light_skin_tone:': u'\U0001FAC5\U0001F3FC',
+    u':person_with_crown_medium_skin_tone:': u'\U0001FAC5\U0001F3FD',
     u':person_with_skullcap:': u'\U0001F472',
     u':person_with_skullcap_dark_skin_tone:': u'\U0001F472\U0001F3FF',
     u':person_with_skullcap_light_skin_tone:': u'\U0001F472\U0001F3FB',
@@ -2498,6 +2584,7 @@
     u':place_of_worship:': u'\U0001F6D0',
     u':play_button:': u'\U000025B6',
     u':play_or_pause_button:': u'\U000023EF',
+    u':playground_slide:': u'\U0001F6DD',
     u':pleading_face:': u'\U0001F97A',
     u':plunger:': u'\U0001FAA0',
     u':plus:': u'\U00002795',
@@ -2522,9 +2609,22 @@
     u':potted_plant:': u'\U0001FAB4',
     u':poultry_leg:': u'\U0001F357',
     u':pound_banknote:': u'\U0001F4B7',
+    u':pouring_liquid:': u'\U0001FAD7',
     u':pouting_cat:': u'\U0001F63E',
     u':pouting_face:': u'\U0001F621',
     u':prayer_beads:': u'\U0001F4FF',
+    u':pregnant_man:': u'\U0001FAC3',
+    u':pregnant_man_dark_skin_tone:': u'\U0001FAC3\U0001F3FF',
+    u':pregnant_man_light_skin_tone:': u'\U0001FAC3\U0001F3FB',
+    u':pregnant_man_medium-dark_skin_tone:': u'\U0001FAC3\U0001F3FE',
+    u':pregnant_man_medium-light_skin_tone:': u'\U0001FAC3\U0001F3FC',
+    u':pregnant_man_medium_skin_tone:': u'\U0001FAC3\U0001F3FD',
+    u':pregnant_person:': u'\U0001FAC4',
+    u':pregnant_person_dark_skin_tone:': u'\U0001FAC4\U0001F3FF',
+    u':pregnant_person_light_skin_tone:': u'\U0001FAC4\U0001F3FB',
+    u':pregnant_person_medium-dark_skin_tone:': u'\U0001FAC4\U0001F3FE',
+    u':pregnant_person_medium-light_skin_tone:': u'\U0001FAC4\U0001F3FC',
+    u':pregnant_person_medium_skin_tone:': u'\U0001FAC4\U0001F3FD',
     u':pregnant_woman:': u'\U0001F930',
     u':pregnant_woman_dark_skin_tone:': u'\U0001F930\U0001F3FF',
     u':pregnant_woman_light_skin_tone:': u'\U0001F930\U0001F3FB',
@@ -2628,7 +2728,14 @@
     u':right_arrow_curving_down:': u'\U00002935',
     u':right_arrow_curving_left:': u'\U000021A9',
     u':right_arrow_curving_up:': u'\U00002934',
+    u':rightwards_hand:': u'\U0001FAF1',
+    u':rightwards_hand_dark_skin_tone:': u'\U0001FAF1\U0001F3FF',
+    u':rightwards_hand_light_skin_tone:': u'\U0001FAF1\U0001F3FB',
+    u':rightwards_hand_medium-dark_skin_tone:': u'\U0001FAF1\U0001F3FE',
+    u':rightwards_hand_medium-light_skin_tone:': u'\U0001FAF1\U0001F3FC',
+    u':rightwards_hand_medium_skin_tone:': u'\U0001FAF1\U0001F3FD',
     u':ring:': u'\U0001F48D',
+    u':ring_buoy:': u'\U0001F6DF',
     u':ringed_planet:': u'\U0001FA90',
     u':roasted_sweet_potato:': u'\U0001F360',
     u':robot:': u'\U0001F916',
@@ -2652,6 +2759,7 @@
     u':sailboat:': u'\U000026F5',
     u':sake:': u'\U0001F376',
     u':salt:': u'\U0001F9C2',
+    u':saluting_face:': u'\U0001FAE1',
     u':sandwich:': u'\U0001F96A',
     u':sari:': u'\U0001F97B',
     u':satellite:': u'\U0001F6F0',
@@ -2737,6 +2845,7 @@
     u':smiling_face_with_heart-eyes:': u'\U0001F60D',
     u':smiling_face_with_hearts:': u'\U0001F970',
     u':smiling_face_with_horns:': u'\U0001F608',
+    u':smiling_face_with_open_hands:': u'\U0001F917',
     u':smiling_face_with_smiling_eyes:': u'\U0001F60A',
     u':smiling_face_with_sunglasses:': u'\U0001F60E',
     u':smiling_face_with_tear:': u'\U0001F972',
@@ -2909,6 +3018,7 @@
     u':triangular_flag:': u'\U0001F6A9',
     u':triangular_ruler:': u'\U0001F4D0',
     u':trident_emblem:': u'\U0001F531',
+    u':troll:': u'\U0001F9CC',
     u':trolleybus:': u'\U0001F68E',
     u':trophy:': u'\U0001F3C6',
     u':tropical_drink:': u'\U0001F379',
@@ -2986,6 +3096,7 @@
     u':weary_face:': u'\U0001F629',
     u':wedding:': u'\U0001F492',
     u':whale:': u'\U0001F40B',
+    u':wheel:': u'\U0001F6DE',
     u':wheel_of_dharma:': u'\U00002638',
     u':wheelchair_symbol:': u'\U0000267F',
     u':white_cane:': u'\U0001F9AF',
@@ -3515,6 +3626,7 @@
     u':writing_hand_medium-dark_skin_tone:': u'\U0000270D\U0001F3FE',
     u':writing_hand_medium-light_skin_tone:': u'\U0000270D\U0001F3FC',
     u':writing_hand_medium_skin_tone:': u'\U0000270D\U0001F3FD',
+    u':x-ray:': u'\U0001FA7B',
     u':yarn:': u'\U0001F9F6',
     u':yawning_face:': u'\U0001F971',
     u':yellow_circle:': u'\U0001F7E1',
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/emoji-1.4.2/emoji.egg-info/PKG-INFO 
new/emoji-1.5.0/emoji.egg-info/PKG-INFO
--- old/emoji-1.4.2/emoji.egg-info/PKG-INFO     2021-07-30 08:02:01.000000000 
+0200
+++ new/emoji-1.5.0/emoji.egg-info/PKG-INFO     2021-09-17 07:11:12.000000000 
+0200
@@ -1,6 +1,6 @@
 Metadata-Version: 2.1
 Name: emoji
-Version: 1.4.2
+Version: 1.5.0
 Summary: Emoji for Python
 Home-page: https://github.com/carpedm20/emoji/
 Author: Taehoon Kim, Kevin Wurster and Tahir Jalilov

Reply via email to