From 67cb8cdbdc49a7e0cdcc41a852bda998cc942400 Mon Sep 17 00:00:00 2001 From: ReaJason Date: Fri, 12 Jan 2024 20:31:50 +0800 Subject: [PATCH] fix: build error --- setup.py | 2 +- xhs/__version__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index ede68ba..60bc0a4 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ url=about["__url__"], license=about["__license__"], packages=["xhs"], - install_requires=["requests"], + install_requires=["requests", "lxml"], keywords="xhs crawl", include_package_data=True, zip_safe=False, diff --git a/xhs/__version__.py b/xhs/__version__.py index 23ac2ff..ec21786 100644 --- a/xhs/__version__.py +++ b/xhs/__version__.py @@ -8,8 +8,8 @@ __title__ = "xhs" __description__ = "xiaohongshu crawl sdk." __url__ = "https://github.com/ReaJason/xhs" -__version__ = "0.2.8" -__build__ = 0x000208 +__version__ = "0.2.9" +__build__ = 0x000209 __author__ = "ReaJason" __author_email__ = "reajason1225@gmail.com" __license__ = "MIT"