-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix a few misc things. Remove 3.7 support, add 3.12 support.
- Loading branch information
Showing
9 changed files
with
37 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
3.7.15 | ||
3.8.15 | ||
3.9.15 | ||
3.10.8 | ||
3.11.0 | ||
3.8.19 | ||
3.9.19 | ||
3.10.14 | ||
3.11.8 | ||
3.12.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"editor.formatOnSave": true | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule emojilib
updated
5 files
+0 −1 | README.md | |
+350 −85 | dist/emoji-en-US.json | |
+3 −0 | dist/index.d.ts | |
+25 −153 | package-lock.json | |
+4 −3 | package.json |
Submodule gemoji
updated
8 files
+2 −2 | Gemfile.lock | |
+1 −1 | Rakefile | |
+2 −2 | db/dump.rb | |
+334 −70 | db/emoji.json | |
+1 −1 | gemoji.gemspec | |
+17 −6 | lib/emoji/character.rb | |
+9 −0 | test/emoji_test.rb | |
+79 −46 | vendor/unicode-emoji-test.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -94,22 +94,6 @@ def generate_emoji_db(root_dir, outfile="emoji_fzf/emoji_fzf_emojilib.py"): | |
""" | ||
) | ||
|
||
# Unfortunately this doesn't work; we end up with literals like '\\U0001f600' 😕 | ||
# not suitable for printing alas. For now, just archive the py2 output, | ||
# which on both | ||
# | ||
# # we want the emojilib file to have the literal symbols represented as ascii | ||
# # literals with \u escape sequences, which we can safely use in python2 with | ||
# # codecs.getwriter('utf-8') to print the symbol. to make sure the emojilib | ||
# # is formatted correctly when the wheel is built with python3, use a little | ||
# # goofy logic. | ||
# import sys | ||
# if sys.version_info >= (3,): | ||
# for key, val in EMOJI_DICT.items(): | ||
# EMOJI_DICT[key]["emoji"] = ( | ||
# val["emoji"].encode("ascii", "backslashreplace").decode("utf-8") | ||
# ) | ||
|
||
genfile.write("EMOJIS = {}".format(emoji_dict)) | ||
|
||
|
||
|
@@ -120,7 +104,7 @@ def generate_emoji_db(root_dir, outfile="emoji_fzf/emoji_fzf_emojilib.py"): | |
# I think using `-` instead of `_` is more user-friendly, but due to python | ||
# import directives not allowing `-`, keep everything consistent with `_`. | ||
name="emoji-fzf", | ||
version="0.8.0", | ||
version="0.9.0", | ||
description="Emoji searcher for use with fzf", | ||
author="Noah Pendleton", | ||
author_email="[email protected]", | ||
|
@@ -139,11 +123,11 @@ def generate_emoji_db(root_dir, outfile="emoji_fzf/emoji_fzf_emojilib.py"): | |
entry_points={"console_scripts": ["emoji-fzf = emoji_fzf.emoji_fzf:cli"]}, | ||
classifiers=[ | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Operating System :: OS Independent", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters