Skip to content

Migration guide for v6

Richard Marmorstein edited this page Nov 18, 2022 · 5 revisions

⚠️ Changed

  • Dropped support for Python version 3.4 and 3.5. We now support Python 2.7 or 3.6+.
  • Fixed mistyped names for two OAuth exceptions: UnsupportedGrantTypError->UnsupportedGrantTypeError and UnsupportedResponseTypError->UnsupportedResponseTypeError.

Deprecated

  • Deprecate save method on resources. Use modify instead.
    # Before
    customer = stripe.Customer.retrieve("cus_123")
    customer.email = "[email protected]"
    customer.save()
    
    # After
    stripe.Customer.modify("cus_123", email="[email protected]")

⚠️ Removed

  • Removed Orders resource.
  • Removed SKU resource.

Clone this wiki locally