Skip to content
This repository has been archived by the owner on Mar 29, 2022. It is now read-only.

Commit

Permalink
Update development dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
vfaronov committed Sep 4, 2016
1 parent 054ee85 commit b2b9d15
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 16 deletions.
7 changes: 4 additions & 3 deletions HACKING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Set up::

Run tests::

$ py.test
$ pytest

Run Pylint::

Expand All @@ -27,7 +27,7 @@ if you want to run them locally before pushing to GitHub, see ``.travis.yml``.
Use isort if you like -- there's an ``.isort.cfg`` with the right options --
but this is not enforced automatically for now.

Versions of development tools (py.test, Pylint...)
Versions of development tools (pytest, Pylint...)
are pinned down to help make builds/QA reproducible.
From time to time, they are manually upgraded (see the "Maintenance" section).
Eventually I will use pip-sync for this,
Expand Down Expand Up @@ -148,7 +148,7 @@ Adding a notice
#. If necessary, add more test cases: ``1679_2``, and so on.
#. Run your tests and make sure they fail as expected::

$ py.test -k1679
$ pytest -k1679

#. Write the actual checks logic.
Usually it goes into one of the four big functions described above,
Expand Down Expand Up @@ -222,6 +222,7 @@ Maintenance

#. Pin down new versions::

$ rm tools/requirements.txt
$ pip-compile tools/requirements.in
$ pip install -r tools/requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion tools/jshint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

VERSION=2.9.2
VERSION=2.9.3
BASE=$HOME/install-jshint

action=$1
Expand Down
2 changes: 1 addition & 1 deletion tools/pypy_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

set -e

VERSION=pypy2-v5.3.1-linux64
VERSION=pypy2-v5.4.0-linux64
BASE=$HOME/install-pypy

rm -rf "$BASE"
Expand Down
2 changes: 1 addition & 1 deletion tools/pytest_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ set -e

test -e setup.py || { echo 'must run from repo root' >&2; exit 1; }

py.test --cov=httpolice/ --cov=test/ --cov-fail-under=100 --cov-report=html
pytest --cov=httpolice/ --cov=test/ --cov-fail-under=100 --cov-report=html
2 changes: 1 addition & 1 deletion tools/requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ twine
# This will have to be checked and synchronized from time to time.
# Not sure if good idea.
Sphinx==1.3.5
alabaster==0.7.8
alabaster==0.7.9
18 changes: 9 additions & 9 deletions tools/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,36 +4,36 @@
#
# pip-compile --output-file tools/requirements.txt tools/requirements.in
#
alabaster==0.7.8
alabaster==0.7.9
args==0.1.0 # via clint
astroid==1.4.7 # via pylint
astroid==1.4.8 # via pylint
babel==2.3.4 # via sphinx
check-manifest==0.31
check-manifest==0.33
click==6.6 # via pip-tools
clint==0.5.1 # via twine
coverage==4.1 # via pytest-cov
coverage==4.2 # via pytest-cov
docutils==0.12
first==2.0.1 # via pip-tools
isort==4.2.5 # via pylint
Jinja2==2.8 # via sphinx
lazy-object-proxy==1.2.2 # via astroid
MarkupSafe==0.23 # via jinja2
mccabe==0.5.0 # via pylint
mccabe==0.5.2 # via pylint
pip-tools==1.7.0
pkginfo==1.3.2 # via twine
py==1.4.31 # via pytest
Pygments==2.1.3 # via sphinx
pylint==1.6.4
pytest-cov==2.3.0
pytest==2.9.2
pytest-cov==2.3.1
pytest==3.0.2
pytz==2016.6.1 # via babel
requests-toolbelt==0.7.0 # via twine
requests==2.10.0 # via requests-toolbelt, twine
requests==2.11.1 # via requests-toolbelt, twine
six==1.10.0 # via astroid, pip-tools, pylint, sphinx
snowballstemmer==1.2.1 # via sphinx
sphinx-rtd-theme==0.1.9 # via sphinx
Sphinx==1.3.5 # via sphinx-rtd-theme
twine==1.7.4
twine==1.8.1
wheel==0.29.0
wrapt==1.10.8 # via astroid

Expand Down

0 comments on commit b2b9d15

Please sign in to comment.