Spaces:
Runtime error
Runtime error
fix dependencies
Browse files- poetry.lock +1 -12
- pyproject.toml +0 -1
- requirements.txt +3 -0
poetry.lock
CHANGED
@@ -1241,17 +1241,6 @@ tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "pa
|
|
1241 |
typing = ["typing-extensions"]
|
1242 |
xmp = ["defusedxml"]
|
1243 |
|
1244 |
-
[[package]]
|
1245 |
-
name = "pip"
|
1246 |
-
version = "24.0"
|
1247 |
-
description = "The PyPA recommended tool for installing Python packages."
|
1248 |
-
optional = false
|
1249 |
-
python-versions = ">=3.7"
|
1250 |
-
files = [
|
1251 |
-
{file = "pip-24.0-py3-none-any.whl", hash = "sha256:ba0d021a166865d2265246961bec0152ff124de910c5cc39f1156ce3fa7c69dc"},
|
1252 |
-
{file = "pip-24.0.tar.gz", hash = "sha256:ea9bd1a847e8c5774a5777bb398c19e80bcd4e2aa16a4b301b718fe6f593aba2"},
|
1253 |
-
]
|
1254 |
-
|
1255 |
[[package]]
|
1256 |
name = "pydantic"
|
1257 |
version = "2.6.4"
|
@@ -1965,4 +1954,4 @@ testing = ["big-O", "jaraco.functools", "jaraco.itertools", "more-itertools", "p
|
|
1965 |
[metadata]
|
1966 |
lock-version = "2.0"
|
1967 |
python-versions = "^3.9"
|
1968 |
-
content-hash = "
|
|
|
1241 |
typing = ["typing-extensions"]
|
1242 |
xmp = ["defusedxml"]
|
1243 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1244 |
[[package]]
|
1245 |
name = "pydantic"
|
1246 |
version = "2.6.4"
|
|
|
1954 |
[metadata]
|
1955 |
lock-version = "2.0"
|
1956 |
python-versions = "^3.9"
|
1957 |
+
content-hash = "1ee2310a20807b1a3539ca1d914d1a36ff615efb41c65b47225babd8dd39f931"
|
pyproject.toml
CHANGED
@@ -9,7 +9,6 @@ readme = "README.md"
|
|
9 |
python = "^3.9"
|
10 |
gradio = "4.23.0"
|
11 |
findpydeps = "^0.2.6"
|
12 |
-
pip = "^24.0"
|
13 |
huggingface-hub = "^0.22.1"
|
14 |
|
15 |
|
|
|
9 |
python = "^3.9"
|
10 |
gradio = "4.23.0"
|
11 |
findpydeps = "^0.2.6"
|
|
|
12 |
huggingface-hub = "^0.22.1"
|
13 |
|
14 |
|
requirements.txt
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
findpydeps==0.2.6
|
2 |
+
gradio>=4.23.0,<5
|
3 |
+
huggingface-hub==0.22.1
|