Skip to content

Commit b92f635

Browse files
committed
Reenable html5lib
Update also requirements.
1 parent 8f7077b commit b92f635

File tree

5 files changed

+10
-12
lines changed

5 files changed

+10
-12
lines changed

doc/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Changelog
44
Version 1.0.2
55
-------------
66

7+
* Reenable html5lib benchmark: html5lib 1.1 has been released.
78
* Update requirements.
89

910
Version 1.0.1 (2020-03-26)

pyperformance/benchmarks/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@
2323
# Unable to get the program 'hg' from the virtual environment
2424
# 'hg_startup',
2525

26-
# html5lib is not compatible with Python 3.9. It has been fixed, but there
27-
# is no release yet.
28-
# https://github.com/html5lib/html5lib-python/issues/419
29-
# 'html5lib',
30-
26+
'html5lib',
3127
'json_dumps',
3228
'json_loads',
3329
'logging',

pyperformance/requirements.in

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Mako # bm_mako
1818
SQLAlchemy # bm_sqlalchemy_declarative
1919
# FIXME: reenable hg_startup
2020
# mercurial # bm_hg_startup
21-
# FIXME: reenable bm_html5lib benchmark
22-
# html5lib # bm_html5lib
21+
html5lib # bm_html5lib
2322
pyaes # bm_crypto_pyaes
2423
sympy # bm_sympy
2524
tornado # bm_tornado_http

pyperformance/requirements.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,24 @@
44
#
55
# pip-compile requirements.in
66
#
7-
asgiref==3.2.7 # via django
8-
certifi==2020.4.5.2 # via dulwich
9-
chameleon==3.7.2 # via -r requirements.in
7+
asgiref==3.2.10 # via django
8+
certifi==2020.6.20 # via dulwich
9+
chameleon==3.7.4 # via -r requirements.in
1010
django==3.0.7 # via -r requirements.in
11-
dulwich==0.20.2 # via -r requirements.in
11+
dulwich==0.20.5 # via -r requirements.in
1212
genshi==0.7.3 # via -r requirements.in
13+
html5lib==1.1 # via -r requirements.in
1314
mako==1.1.3 # via -r requirements.in
1415
markupsafe==1.1.1 # via mako
1516
mpmath==1.1.0 # via sympy
1617
psutil==5.7.0 # via -r requirements.in
1718
pyaes==1.6.1 # via -r requirements.in
1819
pyperf==2.0.0 # via -r requirements.in
1920
pytz==2020.1 # via django
21+
six==1.15.0 # via html5lib
2022
sqlalchemy==1.3.17 # via -r requirements.in
2123
sqlparse==0.3.1 # via django
2224
sympy==1.6 # via -r requirements.in
2325
tornado==6.0.4 # via -r requirements.in
2426
urllib3==1.25.9 # via dulwich
27+
webencodings==0.5.1 # via html5lib

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
# FIXME:
44
#
5-
# - REENABLE HTML5LIB BENCHMARK.
65
# - REENABLE HG_STARTUP BENCHMARK.
76
#
87
# Update dependencies:

0 commit comments

Comments
 (0)