details: https://code.tryton.org/tryton/commit/bdc64a6ffe6e
branch: default
user: Cédric Krier <[email protected]>
date: Sun Mar 29 12:04:54 2026 +0200
description:
Update the version of Stripe used
diffstat:
modules/account_payment_stripe/payment.py | 2 +-
modules/account_payment_stripe/pyproject.toml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diffs (24 lines):
diff -r 918bb8531e94 -r bdc64a6ffe6e modules/account_payment_stripe/payment.py
--- a/modules/account_payment_stripe/payment.py Tue Mar 24 16:36:12 2026 +0100
+++ b/modules/account_payment_stripe/payment.py Sun Mar 29 12:04:54 2026 +0200
@@ -41,7 +41,7 @@
'account_payment_stripe', 'max_network_retries', default=3)
RETRY_CODES = {'lock_timeout', 'token_in_use'}
-STRIPE_VERSION = '2025-09-30.clover'
+STRIPE_VERSION = '2026-03-25.dahlia'
if STRIPE_VERSION != stripe.api_version:
warnings.warn(
f"A new Stripe API version {stripe.api_version!r} is available",
diff -r 918bb8531e94 -r bdc64a6ffe6e
modules/account_payment_stripe/pyproject.toml
--- a/modules/account_payment_stripe/pyproject.toml Tue Mar 24 16:36:12
2026 +0100
+++ b/modules/account_payment_stripe/pyproject.toml Sun Mar 29 12:04:54
2026 +0200
@@ -53,7 +53,7 @@
"" = "trytond/modules/account_payment_stripe"
[tool.hatch.metadata.hooks.tryton]
-dependencies = ['stripe >= 7.8.0']
+dependencies = ['stripe >= 15']
copyright = 'COPYRIGHT'
readme = 'README.rst'