From 66c4ff4d957e753d4edcc8e2aac5acfdb644f9a0 Mon Sep 17 00:00:00 2001 From: Taehoon Kim Date: Sat, 19 Dec 2015 08:24:07 +0900 Subject: [PATCH 1/3] sync version with pypi: from 0.2.0 to 0.2.1 thx to @PidgeyL --- fbchat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbchat/__init__.py b/fbchat/__init__.py index 77c223d..44f366e 100644 --- a/fbchat/__init__.py +++ b/fbchat/__init__.py @@ -15,7 +15,7 @@ from .client import * __copyright__ = 'Copyright 2015 by Taehoon Kim' -__version__ = '0.2.0' +__version__ = '0.2.1' __license__ = 'BSD' __author__ = 'Taehoon Kim' __email__ = 'carpedm20@gmail.com' From 05aea7a492a74d881136417608575f73e46a5391 Mon Sep 17 00:00:00 2001 From: Taehoon Kim Date: Sat, 26 Dec 2015 10:38:52 +0900 Subject: [PATCH 2/3] sync version with pypi: from 0.2.1 to 0.2.2 thx to @PidgeyL --- fbchat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fbchat/__init__.py b/fbchat/__init__.py index 44f366e..76c4e84 100644 --- a/fbchat/__init__.py +++ b/fbchat/__init__.py @@ -15,7 +15,7 @@ from .client import * __copyright__ = 'Copyright 2015 by Taehoon Kim' -__version__ = '0.2.1' +__version__ = '0.2.2' __license__ = 'BSD' __author__ = 'Taehoon Kim' __email__ = 'carpedm20@gmail.com' From a1d01a61b6a9a2959515bd2b9f17f0c429efe144 Mon Sep 17 00:00:00 2001 From: marchon Date: Sat, 26 Dec 2015 12:57:20 -0500 Subject: [PATCH 3/3] added lxml to dependencies --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index ec05f26..3bcf2ab 100644 --- a/setup.py +++ b/setup.py @@ -69,6 +69,7 @@ setup( packages=['fbchat'], install_requires=[ 'requests', + 'lxml', 'beautifulsoup4' ], url=source,