Skip to content

Commit

Permalink
Update requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
vstinner committed Mar 19, 2020
1 parent f2ed187 commit add4ee9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 25 deletions.
13 changes: 8 additions & 5 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ Version 1.0.1
* Drop usage of the six module since Python 2 is no longer supported.
* Update dependencies:

* Django: 3.0 => 3.0.3
* Mako: 1.1.0 = > 1.1.1
* SQLAlchemy: 1.3.12 => 1.3.13
* django: 3.0 => 3.0.4
* dulwich: 0.19.14 => 0.19.15
* mercurial: 5.1.1 => 5.3
* six : 1.13.0 => 1.14.0
* mako: 1.1.0 = > 1.1.2
* mercurial: 5.1.1 => 5.3.1
* psutil: 5.6.7 => 5.7.0
* pyperf: 1.7.0 => 2.0.0
* sqlalchemy: 1.3.12 => 1.3.15
* sympy: 1.5 => 1.5.1
* tornado: 6.0.3 => 6.0.4

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

Version 1.0.0 (2019-12-17)
Expand Down
5 changes: 3 additions & 2 deletions pyperformance/requirements.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pyperformance dependencies
# --------------------------

pyperf==1.7.0
pyperf


# Benchmarks dependencies
Expand All @@ -17,7 +17,8 @@ Genshi # bm_genshi
Mako # bm_mako
SQLAlchemy # bm_sqlalchemy_declarative
mercurial # bm_hg_startup
html5lib # bm_html5lib
# FIXME: reenable bm_html5lib benchmark
# html5lib # bm_html5lib
pyaes # bm_crypto_pyaes
sympy # bm_sympy
tornado # bm_tornado_http
Expand Down
31 changes: 14 additions & 17 deletions pyperformance/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,22 @@
#
# pip-compile requirements.in
#
asgiref==3.2.3 # via django
asgiref==3.2.5 # via django
certifi==2019.11.28 # via dulwich
chameleon==3.6.2
django==3.0.3
dulwich==0.19.15
genshi==0.7.3
html5lib==1.0.1
mako==1.1.1
chameleon==3.6.2 # via -r requirements.in
django==3.0.4 # via -r requirements.in
dulwich==0.19.15 # via -r requirements.in
genshi==0.7.3 # via -r requirements.in
mako==1.1.2 # via -r requirements.in
markupsafe==1.1.1 # via mako
mercurial==5.3
mercurial==5.3.1 # via -r requirements.in
mpmath==1.1.0 # via sympy
psutil==5.6.7
pyaes==1.6.1
pyperf==1.7.0
psutil==5.7.0 # via -r requirements.in
pyaes==1.6.1 # via -r requirements.in
pyperf==2.0.0 # via -r requirements.in
pytz==2019.3 # via django
six==1.14.0 # via html5lib, pyperf
sqlalchemy==1.3.13
sqlparse==0.3.0 # via django
sympy==1.5.1
tornado==6.0.3
sqlalchemy==1.3.15 # via -r requirements.in
sqlparse==0.3.1 # via django
sympy==1.5.1 # via -r requirements.in
tornado==6.0.4 # via -r requirements.in
urllib3==1.25.8 # via dulwich
webencodings==0.5.1 # via html5lib
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#
# - python3 -m pip install --user --upgrade pip-tools
# - git clean -fdx # remove all untracked files!
# - cd pyperformance; pip-compile requirements.in
# - (cd pyperformance; pip-compile --upgrade requirements.in)
#
# Prepare a release:
#
Expand Down

0 comments on commit add4ee9

Please sign in to comment.