diff --git a/README.md b/README.md index 794ccfa9..c8fffd51 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,14 @@ ``` # Requires Python > 3.6 -pip install checkout-sdk==3.0.0b6 +pip install checkout-sdk==3.0.0b7 ``` +> **Note** +> We are close to release a stable version of Python SDK, however there are plans to rename Marketplace module to Accounts, +> and a re structure on accounts system `default` and `four` in favor to make `four/NAS` system the default one for SDK, these changes will be ready +> at the end of July, sorry in advance for the inconvenience that these breaking changes could cause. + Please check in [GitHub releases](https://github.com/checkout/checkout-sdk-python/releases) for all the versions available. diff --git a/checkout_sdk/properties.py b/checkout_sdk/properties.py index 77fbe15f..4302f3fb 100644 --- a/checkout_sdk/properties.py +++ b/checkout_sdk/properties.py @@ -1 +1 @@ -VERSION = "3.0.0b6" +VERSION = "3.0.0b7" diff --git a/tests/apm/ideal_four_integration_test.py b/tests/apm/ideal_four_integration_test.py index a246d4d2..56a6b96b 100644 --- a/tests/apm/ideal_four_integration_test.py +++ b/tests/apm/ideal_four_integration_test.py @@ -1,8 +1,11 @@ from __future__ import absolute_import +import pytest + from tests.checkout_test_utils import assert_response +@pytest.mark.skip(reason='not available') def test_should_get_info(four_api): response = four_api.ideal.get_info() assert_response(response, @@ -13,6 +16,7 @@ def test_should_get_info(four_api): '_links.curies') +@pytest.mark.skip(reason='not available') def test_should_get_issuers(four_api): response = four_api.ideal.get_issuers() assert_response(response, diff --git a/tests/apm/ideal_integration_test.py b/tests/apm/ideal_integration_test.py index 315856b6..0b1c0b4c 100644 --- a/tests/apm/ideal_integration_test.py +++ b/tests/apm/ideal_integration_test.py @@ -1,8 +1,11 @@ from __future__ import absolute_import +import pytest + from tests.checkout_test_utils import assert_response +@pytest.mark.skip(reason='not available') def test_should_get_info(default_api): response = default_api.ideal.get_info() assert_response(response, @@ -13,6 +16,7 @@ def test_should_get_info(default_api): '_links.curies') +@pytest.mark.skip(reason='not available') def test_should_get_issuers(default_api): response = default_api.ideal.get_issuers() assert_response(response,