Skip to content

Commit 1a95f2c

Browse files
committed
Update development dependencies
Signed-off-by: VirtualTam <[email protected]>
1 parent 3a0123d commit 1a95f2c

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ pip-delete-this-directory.txt
3636

3737
# Unit test / coverage reports
3838
htmlcov/
39+
.pytest_cache/
3940
.tox/
4041
.coverage
4142
.coverage.*

requirements/dev.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
-r docs.txt
22
-r tests.txt
3-
tox==2.5.0
4-
twine==1.8.1
3+
tox==3.0.0
4+
twine==1.11.0

requirements/docs.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
docutils==0.13.1
2-
Sphinx>=1.5
3-
sphinx_rtd_theme>=0.1.9
1+
docutils==0.14
2+
Sphinx>=1.7
3+
sphinx_rtd_theme>=0.3

requirements/tests.txt

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
coverage==4.3.4
2-
isort==4.2.5
3-
pycodestyle==2.2.0
4-
pydocstyle==1.1.1
5-
pylint==1.6.4
6-
pytest==3.0.5
7-
pytest-cov==2.4.0
8-
pytest-pylint==0.6.0
1+
coverage==4.5.1
2+
isort==4.3.4
3+
pycodestyle==2.4.0
4+
pydocstyle==2.1.1
5+
pylint==1.9.1
6+
pytest==3.6.0
7+
pytest-cov==2.5.1
8+
pytest-pylint==0.9.0

tests/client/test_v1.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
from requests.exceptions import InvalidSchema, MissingSchema
88

99
from shaarli_client.client.v1 import (InvalidEndpointParameters,
10-
ShaarliV1Client,
11-
check_positive_integer)
10+
ShaarliV1Client, check_positive_integer)
1211

1312
SHAARLI_URL = 'http://domain.tld/shaarli'
1413
SHAARLI_SECRET = 's3kr37!'

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ commands=
88
isort --check-only --diff -p shaarli_client
99
pycodestyle
1010
pydocstyle
11-
py34,py35: pytest --pylint
11+
pytest --pylint
1212
pytest --cov=shaarli_client
1313

1414
[testenv:docs]

0 commit comments

Comments
 (0)