Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use rapidfuzz instead of fuzzywuzzy #8

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion persimmon/view/blocks/smart_bubble.py
Expand Up @@ -8,7 +8,7 @@
import inspect
import logging
from functools import reduce
from fuzzywuzzy import process
from rapidfuzz import process
from typing import List, Optional
from kivy.input import MotionEvent
from kivy.uix.recycleview import RecycleView
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Expand Up @@ -5,7 +5,6 @@ colorama==0.3.9
crayons==0.1.2
cycler==0.10.0
docutils==0.13.1
fuzzywuzzy==0.15.0
humanfriendly==3.2
Jinja2==2.9.6
Kivy==1.10.0
Expand All @@ -23,6 +22,7 @@ pyparsing==2.2.0
pytest==3.1.2
python-dateutil==2.6.0
pytz==2017.2
rapidfuzz==0.2.1
requests==2.14.2
six==1.10.0
typed-ast==1.0.4
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -13,7 +13,7 @@
include_package_data=True,
python_requires='>=3.5',
setup_requires=['Cython'],
install_requires=['Cython', 'Kivy', 'scikit-learn', 'pandas', 'fuzzywuzzy', 'pymitter'],
install_requires=['Cython', 'Kivy', 'scikit-learn', 'pandas', 'rapidfuzz', 'pymitter'],
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
Expand Down