Dependencies update

Signed-off-by: David Dashyan <mail@davie.li>
This commit is contained in:
David Dashyan 2021-06-07 15:42:31 +03:00
parent caf31647e0
commit 070598325d
No known key found for this signature in database
GPG Key ID: 4F1E73D047F9F638
3 changed files with 14 additions and 23 deletions

View File

@ -13,9 +13,6 @@ if [[ -n ${TOXENV} ]]; then
pip install --upgrade tox pip install --upgrade tox
elif [[ ${BIGCHAINDB_CI_ABCI} == 'enable' ]]; then elif [[ ${BIGCHAINDB_CI_ABCI} == 'enable' ]]; then
docker-compose build --no-cache --build-arg abci_status=enable bigchaindb docker-compose build --no-cache --build-arg abci_status=enable bigchaindb
elif [[ $TRAVIS_PYTHON_VERSION == 3.5 ]]; then
docker-compose build --build-arg python_version=3.5 --no-cache bigchaindb
pip install --upgrade codecov
elif [[ $BIGCHAINDB_INTEGRATION_TEST == 'enable' ]]; then elif [[ $BIGCHAINDB_INTEGRATION_TEST == 'enable' ]]; then
docker-compose build bigchaindb python-driver docker-compose build bigchaindb python-driver
else else

View File

@ -14,23 +14,17 @@ language: python
cache: pip cache: pip
python: python:
- 3.5
- 3.6 - 3.6
env: env:
global: global:
- DOCKER_COMPOSE_VERSION=1.19.0 - DOCKER_COMPOSE_VERSION=1.29.2
matrix: matrix:
- TOXENV=flake8 - TOXENV=flake8
- TOXENV=docsroot - TOXENV=docsroot
matrix: matrix:
fast_finish: true fast_finish: true
exclude:
- python: 3.5
env: TOXENV=flake8
- python: 3.5
env: TOXENV=docsroot
include: include:
- python: 3.6 - python: 3.6
env: env:

View File

@ -71,22 +71,22 @@ tests_require = [
] + docs_require ] + docs_require
install_requires = [ install_requires = [
'aiohttp==3.6.2', 'aiohttp==3.7.',
'bigchaindb-abci==1.0.5', 'bigchaindb-abci==1.0.7',
'cryptoconditions==0.8.0', 'cryptoconditions==0.8.1',
'flask-cors==3.0.8', 'flask-cors==3.0.10',
'flask-restful==0.3.8', 'flask-restful==0.3.9',
'flask==1.1.2', 'flask==2.0.1',
'gunicorn==20.0.4', 'gunicorn==20.1.0',
'jsonschema==3.2.0', 'jsonschema==3.2.0',
'logstats==0.3.0', 'logstats==0.3.0',
'packaging>=20.0.0', # Dockerfile-alpine required for pkg has ver 20.0.4 'packaging>=20.9',
# TODO Consider not installing the db drivers, or putting them in extras. # TODO Consider not installing the db drivers, or putting them in extras.
'pymongo==3.7.2', 'pymongo==3.11.4',
'python-rapidjson==0.9.1', 'python-rapidjson==1.0',
'pyyaml==5.3.1', 'pyyaml==5.4.1',
'requests==2.23.0', 'requests==2.25.1',
'setproctitle==1.1.10', 'setproctitle==1.2.2',
] ]
if sys.version_info < (3, 6): if sys.version_info < (3, 6):