Skip to content

Commit add4ee9

Browse files
committed
Update requirements
1 parent f2ed187 commit add4ee9

File tree

4 files changed

+26
-25
lines changed

4 files changed

+26
-25
lines changed

doc/changelog.rst

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@ Version 1.0.1
77
* Drop usage of the six module since Python 2 is no longer supported.
88
* Update dependencies:
99

10-
* Django: 3.0 => 3.0.3
11-
* Mako: 1.1.0 = > 1.1.1
12-
* SQLAlchemy: 1.3.12 => 1.3.13
10+
* django: 3.0 => 3.0.4
1311
* dulwich: 0.19.14 => 0.19.15
14-
* mercurial: 5.1.1 => 5.3
15-
* six : 1.13.0 => 1.14.0
12+
* mako: 1.1.0 = > 1.1.2
13+
* mercurial: 5.1.1 => 5.3.1
14+
* psutil: 5.6.7 => 5.7.0
15+
* pyperf: 1.7.0 => 2.0.0
16+
* sqlalchemy: 1.3.12 => 1.3.15
1617
* sympy: 1.5 => 1.5.1
18+
* tornado: 6.0.3 => 6.0.4
1719

20+
* Remove six and html5lib requirements.
1821
* pip-tools (pip-compile) is now used to update dependencies
1922

2023
Version 1.0.0 (2019-12-17)

pyperformance/requirements.in

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# pyperformance dependencies
22
# --------------------------
33

4-
pyperf==1.7.0
4+
pyperf
55

66

77
# Benchmarks dependencies
@@ -17,7 +17,8 @@ Genshi # bm_genshi
1717
Mako # bm_mako
1818
SQLAlchemy # bm_sqlalchemy_declarative
1919
mercurial # bm_hg_startup
20-
html5lib # bm_html5lib
20+
# FIXME: reenable bm_html5lib benchmark
21+
# html5lib # bm_html5lib
2122
pyaes # bm_crypto_pyaes
2223
sympy # bm_sympy
2324
tornado # bm_tornado_http

pyperformance/requirements.txt

Lines changed: 14 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,22 @@
44
#
55
# pip-compile requirements.in
66
#
7-
asgiref==3.2.3 # via django
7+
asgiref==3.2.5 # via django
88
certifi==2019.11.28 # via dulwich
9-
chameleon==3.6.2
10-
django==3.0.3
11-
dulwich==0.19.15
12-
genshi==0.7.3
13-
html5lib==1.0.1
14-
mako==1.1.1
9+
chameleon==3.6.2 # via -r requirements.in
10+
django==3.0.4 # via -r requirements.in
11+
dulwich==0.19.15 # via -r requirements.in
12+
genshi==0.7.3 # via -r requirements.in
13+
mako==1.1.2 # via -r requirements.in
1514
markupsafe==1.1.1 # via mako
16-
mercurial==5.3
15+
mercurial==5.3.1 # via -r requirements.in
1716
mpmath==1.1.0 # via sympy
18-
psutil==5.6.7
19-
pyaes==1.6.1
20-
pyperf==1.7.0
17+
psutil==5.7.0 # via -r requirements.in
18+
pyaes==1.6.1 # via -r requirements.in
19+
pyperf==2.0.0 # via -r requirements.in
2120
pytz==2019.3 # via django
22-
six==1.14.0 # via html5lib, pyperf
23-
sqlalchemy==1.3.13
24-
sqlparse==0.3.0 # via django
25-
sympy==1.5.1
26-
tornado==6.0.3
21+
sqlalchemy==1.3.15 # via -r requirements.in
22+
sqlparse==0.3.1 # via django
23+
sympy==1.5.1 # via -r requirements.in
24+
tornado==6.0.4 # via -r requirements.in
2725
urllib3==1.25.8 # via dulwich
28-
webencodings==0.5.1 # via html5lib

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#
1010
# - python3 -m pip install --user --upgrade pip-tools
1111
# - git clean -fdx # remove all untracked files!
12-
# - cd pyperformance; pip-compile requirements.in
12+
# - (cd pyperformance; pip-compile --upgrade requirements.in)
1313
#
1414
# Prepare a release:
1515
#

0 commit comments

Comments
 (0)