Updated bigchaindb-abci

Reason: gevent API change breaks BigchainDB installation
Signed-off-by: David Dashyan <mail@davie.li>
This commit is contained in:
David Dashyan 2020-04-13 13:15:03 +03:00
parent 9e99c024d3
commit ac339c8224
No known key found for this signature in database
GPG Key ID: 5D619778FD611992
2 changed files with 8 additions and 5 deletions

View File

@ -66,8 +66,11 @@ def send_naughty_tx(asset, metadata):
# Then she expects a nicely formatted error code # Then she expects a nicely formatted error code
status_code = sent_transaction.status_code status_code = sent_transaction.status_code
error = sent_transaction.error error = sent_transaction.error
regex = '\{"message":"Invalid transaction \\(ValidationError\\): Invalid key name .* in asset object. ' \ regex = (
'The key name cannot contain characters .* or null characters","status":400\}\n' r'\{\s*\n*'
r'\s*"message": "Invalid transaction \(ValidationError\): Invalid key name.*The key name cannot contain characters.*\n*' # noqa
r'\s*"status": 400\n*'
r'\s*\}\n*')
assert status_code == 400 assert status_code == 400
assert re.fullmatch(regex, error), sent_transaction assert re.fullmatch(regex, error), sent_transaction
# Otherwise, she expects to see her transaction in the database # Otherwise, she expects to see her transaction in the database

View File

@ -77,15 +77,15 @@ install_requires = [
'cryptoconditions==0.8.0', 'cryptoconditions==0.8.0',
'python-rapidjson~=0.6.0', 'python-rapidjson~=0.6.0',
'logstats~=0.2.1', 'logstats~=0.2.1',
'flask>=0.10.1', 'flask~=0.12.4',
'flask-cors~=3.0.0', 'flask-cors~=3.0.0',
'flask-restful~=0.3.0', 'flask-restful~=0.3.0',
'requests>=2.20.0', 'requests~=2.20.0',
'gunicorn~=19.0', 'gunicorn~=19.0',
'jsonschema~=2.5.1', 'jsonschema~=2.5.1',
'pyyaml>=4.2b1', 'pyyaml>=4.2b1',
'aiohttp~=3.0', 'aiohttp~=3.0',
'bigchaindb-abci==1.0.1', 'bigchaindb-abci>=1.0.2',
'setproctitle~=1.1.0', 'setproctitle~=1.1.0',
'packaging~=18.0', 'packaging~=18.0',
] ]