Skip to content

Commit

Permalink
Updated package dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
akornatskyy committed Nov 1, 2020
1 parent 2c006db commit f565e4f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,12 @@ matrix:
- python: 3.7
env: TOXENV=py37
- python: 3.8
env: TOXENV=py38,py3-bench
env: TOXENV=py38
- python: 3.9
env: TOXENV=py39,py3-bench
- python: pypy3
env: TOXENV=pypy3,pypy3-bench
- python: 3.8
- python: 3.9
env: TOXENV=lint,docs
install:
- pip install tox
Expand Down
2 changes: 1 addition & 1 deletion requirements/dev-py2.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ atomicwrites==1.4.0 # via pytest
attrs==20.2.0 # via pytest
backports.functools-lru-cache==1.6.1 # via wcwidth
click==7.1.2 # via pip-tools
colorama==0.4.3 # via pytest
colorama==0.4.4 # via pytest
configparser==4.0.2 # via importlib-metadata
contextlib2==0.6.0.post1 # via importlib-metadata
coverage==5.3 # via pytest-cov
Expand Down
8 changes: 4 additions & 4 deletions requirements/dev-py3.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
atomicwrites==1.4.0 # via pytest
attrs==20.2.0 # via pytest
click==7.1.2 # via pip-tools
colorama==0.4.3 # via pytest
colorama==0.4.4 # via pytest
coverage==5.3 # via pytest-cov
iniconfig==1.0.1 # via pytest
iniconfig==1.1.1 # via pytest
mock==4.0.2 # via -r requirements/dev.in
packaging==20.4 # via pytest
pip-tools==5.3.1 # via -r requirements/dev.in
pluggy==0.13.1 # via pytest
py==1.9.0 # via pytest
pyparsing==2.4.7 # via packaging
pytest-cov==2.10.1 # via -r requirements/dev.in
pytest==6.1.0 # via -r requirements/dev.in, pytest-cov
pytest==6.1.2 # via -r requirements/dev.in, pytest-cov
six==1.15.0 # via packaging, pip-tools
toml==0.10.1 # via pytest
toml==0.10.2 # via pytest

# The following packages are considered to be unsafe in a requirements file:
# pip
6 changes: 3 additions & 3 deletions requirements/docs.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ alabaster==0.7.12 # via sphinx
babel==2.8.0 # via sphinx
certifi==2020.6.20 # via requests
chardet==3.0.4 # via requests
colorama==0.4.3 # via sphinx
colorama==0.4.4 # via sphinx
docutils==0.16 # via sphinx
idna==2.10 # via requests
imagesize==1.2.0 # via sphinx
jinja2==2.11.2 # via sphinx
markupsafe==1.1.1 # via jinja2
packaging==20.4 # via sphinx
pygments==2.7.1 # via sphinx
pygments==2.7.2 # via sphinx
pyparsing==2.4.7 # via packaging
pytz==2020.1 # via babel
requests==2.24.0 # via sphinx
Expand All @@ -29,7 +29,7 @@ sphinxcontrib-htmlhelp==1.0.3 # via sphinx
sphinxcontrib-jsmath==1.0.1 # via sphinx
sphinxcontrib-qthelp==1.0.3 # via sphinx
sphinxcontrib-serializinghtml==1.1.4 # via sphinx
urllib3==1.25.10 # via requests
urllib3==1.25.11 # via requests

# The following packages are considered to be unsafe in a requirements file:
# setuptools
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27,py37,py38,pypy3,lint,docs
envlist = py27,py37,py38,py39,pypy3,lint,docs
skipsdist = True

[testenv]
Expand All @@ -8,6 +8,7 @@ deps =
py27: -r requirements/dev-py2.txt
py37: -r requirements/dev-py3.txt
py38: -r requirements/dev-py3.txt
py39: -r requirements/dev-py3.txt
pypy3: -r requirements/dev-py3.txt
commands =
pytest -q -x --disable-pytest-warnings --doctest-modules \
Expand Down

0 comments on commit f565e4f

Please sign in to comment.