Skip to content

Commit 7d96f5c

Browse files
feat: added allow_fallback_to_sale flag
1 parent 947e011 commit 7d96f5c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

processout/invoice.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -886,6 +886,7 @@ def authorize(self, source, options={}):
886886
'retry_drop_liability_shift': options.get("retry_drop_liability_shift"),
887887
'capture_amount': options.get("capture_amount"),
888888
'enable_three_d_s_2': options.get("enable_three_d_s_2"),
889+
'allow_fallback_to_sale': options.get("allow_fallback_to_sale"),
889890
'auto_capture_at': options.get("auto_capture_at"),
890891
'metadata': options.get("metadata"),
891892
'source': source}

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
setup(
44
name = 'processout',
55
packages = ['processout', 'processout.errors', 'processout.networking'],
6-
version = '6.25.0',
6+
version = '6.26.0',
77
description = 'ProcessOut API bindings.',
88
author = 'ProcessOut',
99
author_email = '[email protected]',
1010
url = 'https://github.com/processout/processout-python',
11-
download_url = 'https://github.com/processout/processout-python/tarball/6.25.0',
11+
download_url = 'https://github.com/processout/processout-python/tarball/6.26.0',
1212
keywords = ['ProcessOut', 'api', 'bindings'],
1313
classifiers = [],
1414
)

0 commit comments

Comments
 (0)