From ebb2a09107be2a9416b479272a2e0a067028a2cf Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 3 Feb 2020 13:22:33 -0500 Subject: [PATCH] test to make sure next release tests pass --- lbry/__init__.py | 2 +- lbry/wallet/network.py | 2 +- tests/integration/blockchain/test_network.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lbry/__init__.py b/lbry/__init__.py index 71710a36c..63524c582 100644 --- a/lbry/__init__.py +++ b/lbry/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.56.0" +__version__ = "0.57.0" version = tuple(map(int, __version__.split('.'))) # pylint: disable=invalid-name diff --git a/lbry/wallet/network.py b/lbry/wallet/network.py index 176c1cbba..50cc7c8f9 100644 --- a/lbry/wallet/network.py +++ b/lbry/wallet/network.py @@ -148,7 +148,7 @@ class ClientSession(BaseClientSession): class Network: PROTOCOL_VERSION = __version__ - MINIMUM_REQUIRED = (0, 54, 0) + MINIMUM_REQUIRED = (0, 57, 0) def __init__(self, ledger): self.ledger = ledger diff --git a/tests/integration/blockchain/test_network.py b/tests/integration/blockchain/test_network.py index 2dea647ef..301ff9860 100644 --- a/tests/integration/blockchain/test_network.py +++ b/tests/integration/blockchain/test_network.py @@ -25,7 +25,7 @@ class NetworkTests(IntegrationTestCase): 'hash_function': 'sha256', 'hosts': {}, 'protocol_max': '0.99.0', - 'protocol_min': '0.54.0', + 'protocol_min': '0.57.0', 'pruning': None, 'description': '', 'payment_address': '', @@ -44,7 +44,7 @@ class NetworkTests(IntegrationTestCase): 'hash_function': 'sha256', 'hosts': {}, 'protocol_max': '0.99.0', - 'protocol_min': '0.54.0', + 'protocol_min': '0.57.0', 'pruning': None, 'description': 'Fastest server in the west.', 'payment_address': address,