diff --git a/Adyen/settings.py b/Adyen/settings.py index d33e829d..fbe08103 100644 --- a/Adyen/settings.py +++ b/Adyen/settings.py @@ -14,5 +14,5 @@ API_PAYMENT_VERSION = "v64" API_PAYOUT_VERSION = "v64" API_TERMINAL_VERSION = "v1" -LIB_VERSION = "7.1.1" +LIB_VERSION = "7.1.2" LIB_NAME = "adyen-python-api-library" diff --git a/setup.py b/setup.py index aaba6251..f9556ffb 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='Adyen', packages=['Adyen'], - version='7.1.1', + version='7.1.2', maintainer='Adyen', maintainer_email='support@adyen.com', description='Adyen Python Api', diff --git a/test/CheckoutTest.py b/test/CheckoutTest.py index fbb1caa5..663530d3 100644 --- a/test/CheckoutTest.py +++ b/test/CheckoutTest.py @@ -97,7 +97,7 @@ def test_payments_error_mocked(self): 'returnUrl': 'https://your-company.com/...', u'applicationInfo': { u'adyenLibrary': { - u'version': '7.1.1', + u'version': '7.1.2', u'name': 'adyen-python-api-library' } }, diff --git a/test/TerminalTest.py b/test/TerminalTest.py index 3fa23695..c87d921a 100644 --- a/test/TerminalTest.py +++ b/test/TerminalTest.py @@ -1,4 +1,3 @@ -import pkg_resources import unittest import Adyen @@ -8,8 +7,6 @@ except ImportError: from .BaseTest import BaseTest -VERSION = pkg_resources.get_distribution("Adyen").version - class TestTerminal(unittest.TestCase): adyen = Adyen.Adyen(username="YourWSUser", @@ -46,7 +43,7 @@ def test_assign_terminals(self): ], "applicationInfo": { "adyenLibrary": { - "version": VERSION, + "version": '7.1.2', "name": "adyen-python-api-library" } }, @@ -91,7 +88,7 @@ def test_find_terminal(self): "merchantAccount": "YOUR_MERCHANT_ACCOUNT", "applicationInfo": { "adyenLibrary": { - "version": VERSION, + "version": '7.1.2', "name": "adyen-python-api-library" } }, @@ -144,7 +141,7 @@ def test_get_stores_under_account(self): "merchantAccount": "YOUR_MERCHANT_ACCOUNT", "applicationInfo": { "adyenLibrary": { - "version": VERSION, + "version": '7.1.2', "name": "adyen-python-api-library" } }, @@ -174,7 +171,7 @@ def test_get_terminal_details(self): "merchantAccount": "YOUR_MERCHANT_ACCOUNT", "applicationInfo": { "adyenLibrary": { - "version": VERSION, + "version": '7.1.2', "name": "adyen-python-api-library" } }, @@ -231,7 +228,7 @@ def test_get_terminals_under_account(self): "merchantAccount": "YOUR_MERCHANT_ACCOUNT", "applicationInfo": { "adyenLibrary": { - "version": VERSION, + "version": '7.1.2', "name": "adyen-python-api-library" } }, @@ -274,7 +271,7 @@ def test_get_terminals_under_account_store(self): "store": "YOUR_STORE", "applicationInfo": { "adyenLibrary": { - "version": VERSION, + "version": '7.1.2', "name": "adyen-python-api-library" } },