-
Notifications
You must be signed in to change notification settings - Fork 433
Migration guide for v6
Richard Marmorstein edited this page Nov 18, 2022
·
5 revisions
- Dropped support for Python version 3.4 and 3.5 (#881). We now support Python 2.7 or 3.6+.
- Fixed mistyped names for two OAuth exceptions:
UnsupportedGrantTypError
->UnsupportedGrantTypeError
andUnsupportedResponseTypError
->UnsupportedResponseTypeError
(#872).
- Deprecate
save
method on resources (#887). Usemodify
instead.# Before customer = stripe.Customer.retrieve("cus_123") customer.email = "example@test.com" customer.save() # After stripe.Customer.modify("cus_123", email="example@test.com")
- Removed
Orders
resource (#882). - Removed
SKU
resource (#883).