Skip to content

Commit ff0f73c

Browse files
committed
修改了版本
1 parent 918fb62 commit ff0f73c

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

pydify/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .text_generation import TextGenerationClient
1212
from .workflow import WorkflowClient
1313

14-
__version__ = "0.1.3"
14+
__version__ = "0.1.4"
1515
__all__ = [
1616
"WorkflowClient",
1717
"ChatbotClient",

pydify/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -668,7 +668,7 @@ def get_parameters(self, raw: bool = False, **kwargs) -> Dict[str, Any]:
668668

669669
if raw:
670670
return params
671-
671+
672672
# 对user_input_form进行处理,使其变成一个列表
673673
user_input_form = []
674674
for item in params["user_input_form"]:

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
import setuptools
44

55
# 优先读取README.rst,如果不存在则读取README.md
6-
readme_file = "README.rst" if os.path.exists("README.rst") else "README.md"
6+
# readme_file = "README.rst" if os.path.exists("README.rst") else "README.md"
7+
readme_file = "README.md"
78
with open(readme_file, "r", encoding="utf-8") as fh:
89
long_description = fh.read()
910

@@ -32,13 +33,13 @@
3233

3334
setuptools.setup(
3435
name="pydify",
35-
version="0.1.3",
36+
version="0.1.4",
3637
author="Dify SDK Team",
3738
author_email="[email protected]",
3839
description="A Python SDK for interacting with Dify API",
3940
long_description=long_description,
4041
long_description_content_type=long_description_content_type,
41-
url="https://github.com/yourusername/pydify",
42+
url="https://github.com/jayscoder/pydify",
4243
packages=setuptools.find_packages(),
4344
classifiers=[
4445
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)