File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -7,16 +7,16 @@ maintainers = [{name="Commandcracker"}]
77license = {file = " LICENSE.txt" }
88readme = " README.md"
99dependencies = [
10- " textual==0.67.0" , # 0.87.1
11- " beautifulsoup4>=4.12 .3" ,
12- " httpx[http2]>=0.28.0 " ,
10+ " textual==0.67.0" , # 1.0.0
11+ " beautifulsoup4>=4.13 .3" ,
12+ " httpx[http2]>=0.28.1 " ,
1313 " pypresence>=4.3.0" ,
1414 " packaging>=24.2" ,
1515 " platformdirs>=4.3.6" ,
1616 " toml>=0.10.2" ,
1717 " fuzzywuzzy>=0.18.0" ,
1818 " async_lru>=2.0.4"
19- # "yt-dlp>=2024.11.18 ",
19+ # "yt-dlp>=2025.1.26 ",
2020 # "mpv>=1.0.7",
2121]
2222keywords = [
@@ -50,9 +50,9 @@ classifiers = [
5050[project .optional-dependencies ]
5151speedups = [
5252 " levenshtein>=0.26.1" ,
53- " orjson>=3.10.12 "
53+ " orjson>=3.10.15 "
5454]
55- socks = [" httpx[socks]>=0.28.0 " ]
55+ socks = [" httpx[socks]>=0.28.1 " ]
5656
5757[project .urls ]
5858Repository = " https://github.com/Commandcracker/gucken"
Original file line number Diff line number Diff line change 11import warnings
22warnings .filterwarnings ('ignore' , message = 'Using slow pure-python SequenceMatcher. Install python-Levenshtein to remove this warning' )
33
4- __version__ = "0.2.6 "
4+ __version__ = "0.2.7 "
Original file line number Diff line number Diff line change 44from ..networking import AsyncClient
55from .common import DirectLink , Hoster
66
7-
8- REDIRECT_PATTERN = re_compile ("https?://[^\s'\" <>]+" )
7+ REDIRECT_PATTERN = re_compile ("https?://[^'\" <>]+" )
98EXTRACT_VEO_HLS_PATTERN = re_compile (r"'hls': '(?P<hls>.*)'" )
109
1110
You can’t perform that action at this time.
0 commit comments