Spaces:
Configuration error
Configuration error
Fedir Zadniprovskyi
commited on
Commit
·
3431d63
1
Parent(s):
e01d72d
deps: add youtube-dl as dev dependency
Browse files- poetry.lock +16 -1
- pyproject.toml +1 -0
poetry.lock
CHANGED
@@ -1938,7 +1938,22 @@ files = [
|
|
1938 |
{file = "websockets-12.0.tar.gz", hash = "sha256:81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b"},
|
1939 |
]
|
1940 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1941 |
[metadata]
|
1942 |
lock-version = "2.0"
|
1943 |
python-versions = "^3.11"
|
1944 |
-
content-hash = "
|
|
|
1938 |
{file = "websockets-12.0.tar.gz", hash = "sha256:81df9cbcbb6c260de1e007e58c011bfebe2dafc8435107b0537f393dd38c8b1b"},
|
1939 |
]
|
1940 |
|
1941 |
+
[[package]]
|
1942 |
+
name = "youtube_dl"
|
1943 |
+
version = "2021.12.17"
|
1944 |
+
description = "YouTube video downloader"
|
1945 |
+
optional = false
|
1946 |
+
python-versions = "*"
|
1947 |
+
files = []
|
1948 |
+
develop = false
|
1949 |
+
|
1950 |
+
[package.source]
|
1951 |
+
type = "git"
|
1952 |
+
url = "https://github.com/ytdl-org/youtube-dl.git"
|
1953 |
+
reference = "HEAD"
|
1954 |
+
resolved_reference = "a08f2b7e4567cdc50c0614ee0a4ffdff49b8b6e6"
|
1955 |
+
|
1956 |
[metadata]
|
1957 |
lock-version = "2.0"
|
1958 |
python-versions = "^3.11"
|
1959 |
+
content-hash = "6d024a3fd67fb97b24b8bca892db7a035aacbf83c596e1e0000c55cc75188e6c"
|
pyproject.toml
CHANGED
@@ -17,6 +17,7 @@ numpy = "^1.26.4"
|
|
17 |
pytest = "^8.2.0"
|
18 |
httpx = "^0.27.0"
|
19 |
pytest-xdist = "^3.6.1"
|
|
|
20 |
|
21 |
[tool.ruff]
|
22 |
target-version = "py311"
|
|
|
17 |
pytest = "^8.2.0"
|
18 |
httpx = "^0.27.0"
|
19 |
pytest-xdist = "^3.6.1"
|
20 |
+
youtube-dl = {git = "https://github.com/ytdl-org/youtube-dl.git"}
|
21 |
|
22 |
[tool.ruff]
|
23 |
target-version = "py311"
|