Skip to content

Commit 0aaff2a

Browse files
committed
Fix typo in html5lib upper bound
1 parent c1fa1a1 commit 0aaff2a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
dependencies = {
1010
# Keep this in sync with the dependencies in tox.ini.
1111
"lxml": ["lxml>=4.2.0,<5"],
12-
"html5lib": ["beautifulsoup4>=4.4.1,<5", "html5lib>=0.999,<=2"],
12+
"html5lib": ["beautifulsoup4>=4.4.1,<5", "html5lib>=0.999,<2"],
1313
"docs": [],
1414
}
1515

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ deps =
2323
lower_bound_deps: html5lib==0.999
2424
lower_bound_deps: lxml==4.2.0
2525
upper_bound_deps: beautifulsoup4<5
26-
upper_bound_deps: html5lib<=2
26+
upper_bound_deps: html5lib<2
2727
upper_bound_deps: lxml<4.4.0
2828

2929
commands =

0 commit comments

Comments
 (0)