Skip to content

Commit e84dd4d

Browse files
Update dependencies and remove syntax warning
1 parent b118333 commit e84dd4d

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,16 @@ maintainers = [{name="Commandcracker"}]
77
license = {file = "LICENSE.txt"}
88
readme = "README.md"
99
dependencies = [
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
]
2222
keywords = [
@@ -50,9 +50,9 @@ classifiers = [
5050
[project.optional-dependencies]
5151
speedups = [
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]
5858
Repository = "https://github.com/Commandcracker/gucken"

src/gucken/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
import warnings
22
warnings.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"

src/gucken/hoster/veo.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
from ..networking import AsyncClient
55
from .common import DirectLink, Hoster
66

7-
8-
REDIRECT_PATTERN = re_compile("https?://[^\s'\"<>]+")
7+
REDIRECT_PATTERN = re_compile("https?://[^'\"<>]+")
98
EXTRACT_VEO_HLS_PATTERN = re_compile(r"'hls': '(?P<hls>.*)'")
109

1110

0 commit comments

Comments
 (0)