Skip to content

Commit

Permalink
Release 3.0.0b7
Browse files Browse the repository at this point in the history
* Added support for Get transfers details
* Updated requests dependency version to allow recent versions
  • Loading branch information
a-ibarra committed Jul 7, 2022
1 parent dc072cb commit 3b7d3ca
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion checkout_sdk/properties.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "3.0.0b6"
VERSION = "3.0.0b7"
4 changes: 4 additions & 0 deletions tests/apm/ideal_four_integration_test.py
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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,
Expand Down
4 changes: 4 additions & 0 deletions tests/apm/ideal_integration_test.py
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 3b7d3ca

Please sign in to comment.