Skip to content

Commit 04456aa

Browse files
authored
Fix missing yarl requirement (#91)
1 parent 6ddf9ba commit 04456aa

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
ciso8601==2.3.2
33
httpx==0.28.1
44
zeep[async]==4.3.1
5-
yarl>=1.10.0
5+
yarl==1.18.3

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@
88
version_path = os.path.join(here, "onvif/version.txt")
99
version = open(version_path).read().strip()
1010

11-
requires = ["httpx>=0.19.0,<1.0.0", "zeep[async]>=4.2.1,<5.0.0", "ciso8601>=2.1.3"]
11+
requires = [
12+
"httpx>=0.19.0,<1.0.0",
13+
"zeep[async]>=4.2.1,<5.0.0",
14+
"ciso8601>=2.1.3",
15+
"yarl>=1.10.0",
16+
]
1217

1318
CLASSIFIERS = [
1419
"Development Status :: 3 - Alpha",

0 commit comments

Comments
 (0)