XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/gpt4free

fix: Replace 'yaml' with 'PyYAML' in requirements files and setup.py

d3588a18
hlohaus <983577+hlohaus@users.noreply.github.com>
提交于

代码差异

3 个文件 +5 -5
Modified requirements-slim.txt +1 -1
@@ -19,4 +19,4 @@ a2wsgi
19 19 python-dotenv
20 20 ddgs
21 21 cloudscraper
22 yaml
22 PyYAML
Modified requirements.txt +1 -1
@@ -21,4 +21,4 @@ ddgs
21 21 cloudscraper
22 22 wasmtime
23 23 numpy
24 yaml
24 PyYAML
Modified setup.py +3 -3
@@ -42,7 +42,7 @@ EXTRA_REQUIRE = {
42 42 "cloudscraper",
43 43 "wasmtime",
44 44 "numpy",
45 "yaml",
45 "PyYAML",
46 46 ],
47 47 'slim': [
48 48 "curl_cffi>=0.6.2",
@@ -64,7 +64,7 @@ EXTRA_REQUIRE = {
64 64 "python-dotenv",
65 65 "aiofile",
66 66 "cloudscraper",
67 "yaml",
67 "PyYAML",
68 68 ],
69 69 "image": [
70 70 "pillow",
@@ -82,7 +82,7 @@ EXTRA_REQUIRE = {
82 82 "uvicorn",
83 83 "python-multipart",
84 84 "a2wsgi",
85 "yaml"
85 "PyYAML"
86 86 ],
87 87 "gui": [
88 88 "werkzeug", "flask[async]",