Skip to content

Commit 8a3f22c

Browse files
committed
Replace twitter-text requirement with Python 3 compatible version
1 parent 787c365 commit 8a3f22c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fluent_contents/plugins/twitterfeed/templatetags/twitterfeed_tags.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
try:
55
from twitter_text import TwitterText
66
except ImportError:
7-
raise ImportError("The 'twitter-text-py' package is required to use the 'twitterfeed' plugin.")
7+
raise ImportError("The 'twitter-text' package is required to use the 'twitterfeed' plugin.")
88

99
register = Library()
1010

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def find_version(*parts):
5959
'markup': ['docutils', 'textile', 'Markdown>=1.7'],
6060
'oembeditem': ['micawber>=0.3.3', 'beautifulsoup4>=4.3.2'],
6161
'text': ['django-wysiwyg>=0.7.1'],
62-
'twitterfeed': ['twitter-text-py>=1.0.3'],
62+
'twitterfeed': ['twitter-text>=3.0'],
6363
},
6464
tests_require = [
6565
'docutils',

0 commit comments

Comments
 (0)