diff options
author | adam <adam@pkgsrc.org> | 2022-08-19 13:30:17 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2022-08-19 13:30:17 +0000 |
commit | 7265044f600a42675ac381c428495de18cbb4cb5 (patch) | |
tree | 0a4e9279c91b48ac7c37e27e7d7ee0f39cbaf606 /finance | |
parent | 714de841089f9d4d7a2b30bc8d4f43e17e52ee15 (diff) | |
download | pkgsrc-7265044f600a42675ac381c428495de18cbb4cb5.tar.gz |
py-stripe: updated to 4.0.2
4.0.2 - 2022-08-03
* Fix issue where auto_paging_iter failed on nested list objects.
4.0.1 - 2022-08-02
* Fix incorrect handling of additional request parameters
* Fixes issue where using special parameter like `api_key`, `idempotency_key`, `stripe_version`, `stripe_account`, `headers` can cause a `Received unknown parameter error`.
4.0.0 - 2022-08-02
Breaking changes that arose during code generation of the library that we postponed for the next major version. For changes to the SDK, read more detailed description at https://github.com/stripe/stripe-python/wiki/Migration-guide-for-v4. For changes to the Stripe products, read more at https://stripe.com/docs/upgrades#2022-08-01.
"⚠️" symbol highlights breaking changes.
* API Updates
* Next major release changes
* API Updates. Add Price.create tests.
* API Updates. Use auto-generation for credit_note and invoice methods.
⚠️ Removed
- Removed deprecated `AlipayAccount`, `BitcoinReceiver`, `BitcoinTransaction`, `IssuerFraudRecord`, `Recipient`, `RecipientTransfer`, and `ThreeDSecure` classes.
- Removed deprecated `Charge.update_dispute` and `Charge.close_dispute` methods that were using legacy REST API endpoint. Prefer [Dispute.modify](https://stripe.com/docs/api/disputes/update?lang=python) and [Dispute.close](https://stripe.com/docs/api/disputes/close?lang=python)
- Removed deprecated `Card.details` method and `CardDetails` resource. The REST API endpoint is not longer supported.
- Removed the deprecated `Source.source_transactions` method. Prefer `SubscriptionItem.list_source_transactions`
- Removed the deprecated `SubscriptionItem.usage_record_summaries` method. Prefer `SubscriptionItem.list_usage_record_summaries`
- Removed the deprecated `Charge.refund` method. Prefer [Refund.create](https://stripe.com/docs/api/refunds/create)
⚠️ Changed
- To be consistent with other resource methods, `ApplicationFee.refund` returns an instance of `ApplicationFee` and doesn't mutate the instance of `ApplicationFee`.
- To be consistent with other resource methods, the `Customer.delete_discount` no longer resets the `discount` property to `None` and returns the deleted discount instead. If you were relying on this behavior, reset the discount property manually:
- The `LineItem` resource now inherits from `StripeObject` as it has no methods of it's own.
- To be consistent with other resource methods, the `Subscription.delete_discount` returns an instance of deleted discount and doesn't mutate the instance of `Subscription`.
- Update the CA certificate bundle.
- Request sending logic unified across standard and custom methods (https://github.com/stripe/stripe-python/pull/832)
Diffstat (limited to 'finance')
-rw-r--r-- | finance/py-stripe/Makefile | 7 | ||||
-rw-r--r-- | finance/py-stripe/PLIST | 174 | ||||
-rw-r--r-- | finance/py-stripe/distinfo | 8 |
3 files changed, 158 insertions, 31 deletions
diff --git a/finance/py-stripe/Makefile b/finance/py-stripe/Makefile index 907ceb91905..eb02dd52195 100644 --- a/finance/py-stripe/Makefile +++ b/finance/py-stripe/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.54 2022/07/08 14:32:11 wiz Exp $ +# $NetBSD: Makefile,v 1.55 2022/08/19 13:30:17 adam Exp $ -DISTNAME= stripe-3.5.0 +DISTNAME= stripe-4.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= finance python MASTER_SITES= ${MASTER_SITE_PYPI:=s/stripe/} @@ -10,7 +10,6 @@ HOMEPAGE= https://github.com/stripe/stripe-python COMMENT= Stripe python bindings LICENSE= mit -BUILD_DEPENDS+= ${PYPKGPREFIX}-wheel-[0-9]*:../../devel/py-wheel DEPENDS+= ${PYPKGPREFIX}-requests>=2.20:../../devel/py-requests # tests require stripe-mock TEST_DEPENDS+= ${PYPKGPREFIX}-test-[0-9]*:../../devel/py-test @@ -25,5 +24,5 @@ USE_LANGUAGES= # none do-test: cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX} -.include "../../lang/python/wheel.mk" +.include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/finance/py-stripe/PLIST b/finance/py-stripe/PLIST index 590f8844774..d926348670b 100644 --- a/finance/py-stripe/PLIST +++ b/finance/py-stripe/PLIST @@ -1,312 +1,440 @@ -@comment $NetBSD: PLIST,v 1.25 2022/07/08 14:32:11 wiz Exp $ -${PYSITELIB}/${WHEEL_INFODIR}/INSTALLER -${PYSITELIB}/${WHEEL_INFODIR}/LICENSE -${PYSITELIB}/${WHEEL_INFODIR}/METADATA -${PYSITELIB}/${WHEEL_INFODIR}/RECORD -${PYSITELIB}/${WHEEL_INFODIR}/REQUESTED -${PYSITELIB}/${WHEEL_INFODIR}/WHEEL -${PYSITELIB}/${WHEEL_INFODIR}/direct_url.json -${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt +@comment $NetBSD: PLIST,v 1.26 2022/08/19 13:30:17 adam Exp $ +${PYSITELIB}/${EGG_INFODIR}/PKG-INFO +${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt +${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/not-zip-safe +${PYSITELIB}/${EGG_INFODIR}/requires.txt +${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/stripe/__init__.py ${PYSITELIB}/stripe/__init__.pyc +${PYSITELIB}/stripe/__init__.pyo ${PYSITELIB}/stripe/api_requestor.py ${PYSITELIB}/stripe/api_requestor.pyc +${PYSITELIB}/stripe/api_requestor.pyo ${PYSITELIB}/stripe/api_resources/__init__.py ${PYSITELIB}/stripe/api_resources/__init__.pyc +${PYSITELIB}/stripe/api_resources/__init__.pyo ${PYSITELIB}/stripe/api_resources/abstract/__init__.py ${PYSITELIB}/stripe/api_resources/abstract/__init__.pyc +${PYSITELIB}/stripe/api_resources/abstract/__init__.pyo ${PYSITELIB}/stripe/api_resources/abstract/api_resource.py ${PYSITELIB}/stripe/api_resources/abstract/api_resource.pyc +${PYSITELIB}/stripe/api_resources/abstract/api_resource.pyo ${PYSITELIB}/stripe/api_resources/abstract/createable_api_resource.py ${PYSITELIB}/stripe/api_resources/abstract/createable_api_resource.pyc +${PYSITELIB}/stripe/api_resources/abstract/createable_api_resource.pyo ${PYSITELIB}/stripe/api_resources/abstract/custom_method.py ${PYSITELIB}/stripe/api_resources/abstract/custom_method.pyc +${PYSITELIB}/stripe/api_resources/abstract/custom_method.pyo ${PYSITELIB}/stripe/api_resources/abstract/deletable_api_resource.py ${PYSITELIB}/stripe/api_resources/abstract/deletable_api_resource.pyc +${PYSITELIB}/stripe/api_resources/abstract/deletable_api_resource.pyo ${PYSITELIB}/stripe/api_resources/abstract/listable_api_resource.py ${PYSITELIB}/stripe/api_resources/abstract/listable_api_resource.pyc +${PYSITELIB}/stripe/api_resources/abstract/listable_api_resource.pyo ${PYSITELIB}/stripe/api_resources/abstract/nested_resource_class_methods.py ${PYSITELIB}/stripe/api_resources/abstract/nested_resource_class_methods.pyc +${PYSITELIB}/stripe/api_resources/abstract/nested_resource_class_methods.pyo ${PYSITELIB}/stripe/api_resources/abstract/searchable_api_resource.py ${PYSITELIB}/stripe/api_resources/abstract/searchable_api_resource.pyc +${PYSITELIB}/stripe/api_resources/abstract/searchable_api_resource.pyo ${PYSITELIB}/stripe/api_resources/abstract/singleton_api_resource.py ${PYSITELIB}/stripe/api_resources/abstract/singleton_api_resource.pyc +${PYSITELIB}/stripe/api_resources/abstract/singleton_api_resource.pyo ${PYSITELIB}/stripe/api_resources/abstract/test_helpers.py ${PYSITELIB}/stripe/api_resources/abstract/test_helpers.pyc +${PYSITELIB}/stripe/api_resources/abstract/test_helpers.pyo ${PYSITELIB}/stripe/api_resources/abstract/updateable_api_resource.py ${PYSITELIB}/stripe/api_resources/abstract/updateable_api_resource.pyc +${PYSITELIB}/stripe/api_resources/abstract/updateable_api_resource.pyo ${PYSITELIB}/stripe/api_resources/abstract/verify_mixin.py ${PYSITELIB}/stripe/api_resources/abstract/verify_mixin.pyc +${PYSITELIB}/stripe/api_resources/abstract/verify_mixin.pyo ${PYSITELIB}/stripe/api_resources/account.py ${PYSITELIB}/stripe/api_resources/account.pyc +${PYSITELIB}/stripe/api_resources/account.pyo ${PYSITELIB}/stripe/api_resources/account_link.py ${PYSITELIB}/stripe/api_resources/account_link.pyc -${PYSITELIB}/stripe/api_resources/alipay_account.py -${PYSITELIB}/stripe/api_resources/alipay_account.pyc +${PYSITELIB}/stripe/api_resources/account_link.pyo ${PYSITELIB}/stripe/api_resources/apple_pay_domain.py ${PYSITELIB}/stripe/api_resources/apple_pay_domain.pyc +${PYSITELIB}/stripe/api_resources/apple_pay_domain.pyo ${PYSITELIB}/stripe/api_resources/application_fee.py ${PYSITELIB}/stripe/api_resources/application_fee.pyc +${PYSITELIB}/stripe/api_resources/application_fee.pyo ${PYSITELIB}/stripe/api_resources/application_fee_refund.py ${PYSITELIB}/stripe/api_resources/application_fee_refund.pyc +${PYSITELIB}/stripe/api_resources/application_fee_refund.pyo ${PYSITELIB}/stripe/api_resources/apps/__init__.py ${PYSITELIB}/stripe/api_resources/apps/__init__.pyc +${PYSITELIB}/stripe/api_resources/apps/__init__.pyo ${PYSITELIB}/stripe/api_resources/apps/secret.py ${PYSITELIB}/stripe/api_resources/apps/secret.pyc +${PYSITELIB}/stripe/api_resources/apps/secret.pyo ${PYSITELIB}/stripe/api_resources/balance.py ${PYSITELIB}/stripe/api_resources/balance.pyc +${PYSITELIB}/stripe/api_resources/balance.pyo ${PYSITELIB}/stripe/api_resources/balance_transaction.py ${PYSITELIB}/stripe/api_resources/balance_transaction.pyc +${PYSITELIB}/stripe/api_resources/balance_transaction.pyo ${PYSITELIB}/stripe/api_resources/bank_account.py ${PYSITELIB}/stripe/api_resources/bank_account.pyc +${PYSITELIB}/stripe/api_resources/bank_account.pyo ${PYSITELIB}/stripe/api_resources/billing_portal/__init__.py ${PYSITELIB}/stripe/api_resources/billing_portal/__init__.pyc +${PYSITELIB}/stripe/api_resources/billing_portal/__init__.pyo ${PYSITELIB}/stripe/api_resources/billing_portal/configuration.py ${PYSITELIB}/stripe/api_resources/billing_portal/configuration.pyc +${PYSITELIB}/stripe/api_resources/billing_portal/configuration.pyo ${PYSITELIB}/stripe/api_resources/billing_portal/session.py ${PYSITELIB}/stripe/api_resources/billing_portal/session.pyc -${PYSITELIB}/stripe/api_resources/bitcoin_receiver.py -${PYSITELIB}/stripe/api_resources/bitcoin_receiver.pyc -${PYSITELIB}/stripe/api_resources/bitcoin_transaction.py -${PYSITELIB}/stripe/api_resources/bitcoin_transaction.pyc +${PYSITELIB}/stripe/api_resources/billing_portal/session.pyo ${PYSITELIB}/stripe/api_resources/capability.py ${PYSITELIB}/stripe/api_resources/capability.pyc +${PYSITELIB}/stripe/api_resources/capability.pyo ${PYSITELIB}/stripe/api_resources/card.py ${PYSITELIB}/stripe/api_resources/card.pyc +${PYSITELIB}/stripe/api_resources/card.pyo ${PYSITELIB}/stripe/api_resources/cash_balance.py ${PYSITELIB}/stripe/api_resources/cash_balance.pyc +${PYSITELIB}/stripe/api_resources/cash_balance.pyo ${PYSITELIB}/stripe/api_resources/charge.py ${PYSITELIB}/stripe/api_resources/charge.pyc +${PYSITELIB}/stripe/api_resources/charge.pyo ${PYSITELIB}/stripe/api_resources/checkout/__init__.py ${PYSITELIB}/stripe/api_resources/checkout/__init__.pyc +${PYSITELIB}/stripe/api_resources/checkout/__init__.pyo ${PYSITELIB}/stripe/api_resources/checkout/session.py ${PYSITELIB}/stripe/api_resources/checkout/session.pyc +${PYSITELIB}/stripe/api_resources/checkout/session.pyo ${PYSITELIB}/stripe/api_resources/country_spec.py ${PYSITELIB}/stripe/api_resources/country_spec.pyc +${PYSITELIB}/stripe/api_resources/country_spec.pyo ${PYSITELIB}/stripe/api_resources/coupon.py ${PYSITELIB}/stripe/api_resources/coupon.pyc +${PYSITELIB}/stripe/api_resources/coupon.pyo ${PYSITELIB}/stripe/api_resources/credit_note.py ${PYSITELIB}/stripe/api_resources/credit_note.pyc +${PYSITELIB}/stripe/api_resources/credit_note.pyo ${PYSITELIB}/stripe/api_resources/credit_note_line_item.py ${PYSITELIB}/stripe/api_resources/credit_note_line_item.pyc +${PYSITELIB}/stripe/api_resources/credit_note_line_item.pyo ${PYSITELIB}/stripe/api_resources/customer.py ${PYSITELIB}/stripe/api_resources/customer.pyc +${PYSITELIB}/stripe/api_resources/customer.pyo ${PYSITELIB}/stripe/api_resources/customer_balance_transaction.py ${PYSITELIB}/stripe/api_resources/customer_balance_transaction.pyc +${PYSITELIB}/stripe/api_resources/customer_balance_transaction.pyo ${PYSITELIB}/stripe/api_resources/dispute.py ${PYSITELIB}/stripe/api_resources/dispute.pyc +${PYSITELIB}/stripe/api_resources/dispute.pyo ${PYSITELIB}/stripe/api_resources/ephemeral_key.py ${PYSITELIB}/stripe/api_resources/ephemeral_key.pyc +${PYSITELIB}/stripe/api_resources/ephemeral_key.pyo ${PYSITELIB}/stripe/api_resources/error_object.py ${PYSITELIB}/stripe/api_resources/error_object.pyc +${PYSITELIB}/stripe/api_resources/error_object.pyo ${PYSITELIB}/stripe/api_resources/event.py ${PYSITELIB}/stripe/api_resources/event.pyc +${PYSITELIB}/stripe/api_resources/event.pyo ${PYSITELIB}/stripe/api_resources/exchange_rate.py ${PYSITELIB}/stripe/api_resources/exchange_rate.pyc +${PYSITELIB}/stripe/api_resources/exchange_rate.pyo ${PYSITELIB}/stripe/api_resources/file.py ${PYSITELIB}/stripe/api_resources/file.pyc +${PYSITELIB}/stripe/api_resources/file.pyo ${PYSITELIB}/stripe/api_resources/file_link.py ${PYSITELIB}/stripe/api_resources/file_link.pyc +${PYSITELIB}/stripe/api_resources/file_link.pyo ${PYSITELIB}/stripe/api_resources/financial_connections/__init__.py ${PYSITELIB}/stripe/api_resources/financial_connections/__init__.pyc +${PYSITELIB}/stripe/api_resources/financial_connections/__init__.pyo ${PYSITELIB}/stripe/api_resources/financial_connections/account.py ${PYSITELIB}/stripe/api_resources/financial_connections/account.pyc +${PYSITELIB}/stripe/api_resources/financial_connections/account.pyo ${PYSITELIB}/stripe/api_resources/financial_connections/account_owner.py ${PYSITELIB}/stripe/api_resources/financial_connections/account_owner.pyc +${PYSITELIB}/stripe/api_resources/financial_connections/account_owner.pyo ${PYSITELIB}/stripe/api_resources/financial_connections/account_ownership.py ${PYSITELIB}/stripe/api_resources/financial_connections/account_ownership.pyc +${PYSITELIB}/stripe/api_resources/financial_connections/account_ownership.pyo ${PYSITELIB}/stripe/api_resources/financial_connections/session.py ${PYSITELIB}/stripe/api_resources/financial_connections/session.pyc +${PYSITELIB}/stripe/api_resources/financial_connections/session.pyo ${PYSITELIB}/stripe/api_resources/funding_instructions.py ${PYSITELIB}/stripe/api_resources/funding_instructions.pyc +${PYSITELIB}/stripe/api_resources/funding_instructions.pyo ${PYSITELIB}/stripe/api_resources/identity/__init__.py ${PYSITELIB}/stripe/api_resources/identity/__init__.pyc +${PYSITELIB}/stripe/api_resources/identity/__init__.pyo ${PYSITELIB}/stripe/api_resources/identity/verification_report.py ${PYSITELIB}/stripe/api_resources/identity/verification_report.pyc +${PYSITELIB}/stripe/api_resources/identity/verification_report.pyo ${PYSITELIB}/stripe/api_resources/identity/verification_session.py ${PYSITELIB}/stripe/api_resources/identity/verification_session.pyc +${PYSITELIB}/stripe/api_resources/identity/verification_session.pyo ${PYSITELIB}/stripe/api_resources/invoice.py ${PYSITELIB}/stripe/api_resources/invoice.pyc +${PYSITELIB}/stripe/api_resources/invoice.pyo ${PYSITELIB}/stripe/api_resources/invoice_item.py ${PYSITELIB}/stripe/api_resources/invoice_item.pyc +${PYSITELIB}/stripe/api_resources/invoice_item.pyo ${PYSITELIB}/stripe/api_resources/invoice_line_item.py ${PYSITELIB}/stripe/api_resources/invoice_line_item.pyc -${PYSITELIB}/stripe/api_resources/issuer_fraud_record.py -${PYSITELIB}/stripe/api_resources/issuer_fraud_record.pyc +${PYSITELIB}/stripe/api_resources/invoice_line_item.pyo ${PYSITELIB}/stripe/api_resources/issuing/__init__.py ${PYSITELIB}/stripe/api_resources/issuing/__init__.pyc +${PYSITELIB}/stripe/api_resources/issuing/__init__.pyo ${PYSITELIB}/stripe/api_resources/issuing/authorization.py ${PYSITELIB}/stripe/api_resources/issuing/authorization.pyc +${PYSITELIB}/stripe/api_resources/issuing/authorization.pyo ${PYSITELIB}/stripe/api_resources/issuing/card.py ${PYSITELIB}/stripe/api_resources/issuing/card.pyc -${PYSITELIB}/stripe/api_resources/issuing/card_details.py -${PYSITELIB}/stripe/api_resources/issuing/card_details.pyc +${PYSITELIB}/stripe/api_resources/issuing/card.pyo ${PYSITELIB}/stripe/api_resources/issuing/cardholder.py ${PYSITELIB}/stripe/api_resources/issuing/cardholder.pyc +${PYSITELIB}/stripe/api_resources/issuing/cardholder.pyo ${PYSITELIB}/stripe/api_resources/issuing/dispute.py ${PYSITELIB}/stripe/api_resources/issuing/dispute.pyc +${PYSITELIB}/stripe/api_resources/issuing/dispute.pyo ${PYSITELIB}/stripe/api_resources/issuing/transaction.py ${PYSITELIB}/stripe/api_resources/issuing/transaction.pyc +${PYSITELIB}/stripe/api_resources/issuing/transaction.pyo ${PYSITELIB}/stripe/api_resources/line_item.py ${PYSITELIB}/stripe/api_resources/line_item.pyc +${PYSITELIB}/stripe/api_resources/line_item.pyo ${PYSITELIB}/stripe/api_resources/list_object.py ${PYSITELIB}/stripe/api_resources/list_object.pyc +${PYSITELIB}/stripe/api_resources/list_object.pyo ${PYSITELIB}/stripe/api_resources/login_link.py ${PYSITELIB}/stripe/api_resources/login_link.pyc +${PYSITELIB}/stripe/api_resources/login_link.pyo ${PYSITELIB}/stripe/api_resources/mandate.py ${PYSITELIB}/stripe/api_resources/mandate.pyc +${PYSITELIB}/stripe/api_resources/mandate.pyo ${PYSITELIB}/stripe/api_resources/order.py ${PYSITELIB}/stripe/api_resources/order.pyc +${PYSITELIB}/stripe/api_resources/order.pyo ${PYSITELIB}/stripe/api_resources/payment_intent.py ${PYSITELIB}/stripe/api_resources/payment_intent.pyc +${PYSITELIB}/stripe/api_resources/payment_intent.pyo ${PYSITELIB}/stripe/api_resources/payment_link.py ${PYSITELIB}/stripe/api_resources/payment_link.pyc +${PYSITELIB}/stripe/api_resources/payment_link.pyo ${PYSITELIB}/stripe/api_resources/payment_method.py ${PYSITELIB}/stripe/api_resources/payment_method.pyc +${PYSITELIB}/stripe/api_resources/payment_method.pyo ${PYSITELIB}/stripe/api_resources/payout.py ${PYSITELIB}/stripe/api_resources/payout.pyc +${PYSITELIB}/stripe/api_resources/payout.pyo ${PYSITELIB}/stripe/api_resources/person.py ${PYSITELIB}/stripe/api_resources/person.pyc +${PYSITELIB}/stripe/api_resources/person.pyo ${PYSITELIB}/stripe/api_resources/plan.py ${PYSITELIB}/stripe/api_resources/plan.pyc +${PYSITELIB}/stripe/api_resources/plan.pyo ${PYSITELIB}/stripe/api_resources/price.py ${PYSITELIB}/stripe/api_resources/price.pyc +${PYSITELIB}/stripe/api_resources/price.pyo ${PYSITELIB}/stripe/api_resources/product.py ${PYSITELIB}/stripe/api_resources/product.pyc +${PYSITELIB}/stripe/api_resources/product.pyo ${PYSITELIB}/stripe/api_resources/promotion_code.py ${PYSITELIB}/stripe/api_resources/promotion_code.pyc +${PYSITELIB}/stripe/api_resources/promotion_code.pyo ${PYSITELIB}/stripe/api_resources/quote.py ${PYSITELIB}/stripe/api_resources/quote.pyc +${PYSITELIB}/stripe/api_resources/quote.pyo ${PYSITELIB}/stripe/api_resources/radar/__init__.py ${PYSITELIB}/stripe/api_resources/radar/__init__.pyc +${PYSITELIB}/stripe/api_resources/radar/__init__.pyo ${PYSITELIB}/stripe/api_resources/radar/early_fraud_warning.py ${PYSITELIB}/stripe/api_resources/radar/early_fraud_warning.pyc +${PYSITELIB}/stripe/api_resources/radar/early_fraud_warning.pyo ${PYSITELIB}/stripe/api_resources/radar/value_list.py ${PYSITELIB}/stripe/api_resources/radar/value_list.pyc +${PYSITELIB}/stripe/api_resources/radar/value_list.pyo ${PYSITELIB}/stripe/api_resources/radar/value_list_item.py ${PYSITELIB}/stripe/api_resources/radar/value_list_item.pyc -${PYSITELIB}/stripe/api_resources/recipient.py -${PYSITELIB}/stripe/api_resources/recipient.pyc +${PYSITELIB}/stripe/api_resources/radar/value_list_item.pyo ${PYSITELIB}/stripe/api_resources/recipient_transfer.py ${PYSITELIB}/stripe/api_resources/recipient_transfer.pyc +${PYSITELIB}/stripe/api_resources/recipient_transfer.pyo ${PYSITELIB}/stripe/api_resources/refund.py ${PYSITELIB}/stripe/api_resources/refund.pyc +${PYSITELIB}/stripe/api_resources/refund.pyo ${PYSITELIB}/stripe/api_resources/reporting/__init__.py ${PYSITELIB}/stripe/api_resources/reporting/__init__.pyc +${PYSITELIB}/stripe/api_resources/reporting/__init__.pyo ${PYSITELIB}/stripe/api_resources/reporting/report_run.py ${PYSITELIB}/stripe/api_resources/reporting/report_run.pyc +${PYSITELIB}/stripe/api_resources/reporting/report_run.pyo ${PYSITELIB}/stripe/api_resources/reporting/report_type.py ${PYSITELIB}/stripe/api_resources/reporting/report_type.pyc +${PYSITELIB}/stripe/api_resources/reporting/report_type.pyo ${PYSITELIB}/stripe/api_resources/reversal.py ${PYSITELIB}/stripe/api_resources/reversal.pyc +${PYSITELIB}/stripe/api_resources/reversal.pyo ${PYSITELIB}/stripe/api_resources/review.py ${PYSITELIB}/stripe/api_resources/review.pyc +${PYSITELIB}/stripe/api_resources/review.pyo ${PYSITELIB}/stripe/api_resources/search_result_object.py ${PYSITELIB}/stripe/api_resources/search_result_object.pyc +${PYSITELIB}/stripe/api_resources/search_result_object.pyo ${PYSITELIB}/stripe/api_resources/setup_attempt.py ${PYSITELIB}/stripe/api_resources/setup_attempt.pyc +${PYSITELIB}/stripe/api_resources/setup_attempt.pyo ${PYSITELIB}/stripe/api_resources/setup_intent.py ${PYSITELIB}/stripe/api_resources/setup_intent.pyc +${PYSITELIB}/stripe/api_resources/setup_intent.pyo ${PYSITELIB}/stripe/api_resources/shipping_rate.py ${PYSITELIB}/stripe/api_resources/shipping_rate.pyc +${PYSITELIB}/stripe/api_resources/shipping_rate.pyo ${PYSITELIB}/stripe/api_resources/sigma/__init__.py ${PYSITELIB}/stripe/api_resources/sigma/__init__.pyc +${PYSITELIB}/stripe/api_resources/sigma/__init__.pyo ${PYSITELIB}/stripe/api_resources/sigma/scheduled_query_run.py ${PYSITELIB}/stripe/api_resources/sigma/scheduled_query_run.pyc +${PYSITELIB}/stripe/api_resources/sigma/scheduled_query_run.pyo ${PYSITELIB}/stripe/api_resources/sku.py ${PYSITELIB}/stripe/api_resources/sku.pyc +${PYSITELIB}/stripe/api_resources/sku.pyo ${PYSITELIB}/stripe/api_resources/source.py ${PYSITELIB}/stripe/api_resources/source.pyc +${PYSITELIB}/stripe/api_resources/source.pyo ${PYSITELIB}/stripe/api_resources/source_transaction.py ${PYSITELIB}/stripe/api_resources/source_transaction.pyc +${PYSITELIB}/stripe/api_resources/source_transaction.pyo ${PYSITELIB}/stripe/api_resources/subscription.py ${PYSITELIB}/stripe/api_resources/subscription.pyc +${PYSITELIB}/stripe/api_resources/subscription.pyo ${PYSITELIB}/stripe/api_resources/subscription_item.py ${PYSITELIB}/stripe/api_resources/subscription_item.pyc +${PYSITELIB}/stripe/api_resources/subscription_item.pyo ${PYSITELIB}/stripe/api_resources/subscription_schedule.py ${PYSITELIB}/stripe/api_resources/subscription_schedule.pyc +${PYSITELIB}/stripe/api_resources/subscription_schedule.pyo ${PYSITELIB}/stripe/api_resources/tax_code.py ${PYSITELIB}/stripe/api_resources/tax_code.pyc +${PYSITELIB}/stripe/api_resources/tax_code.pyo ${PYSITELIB}/stripe/api_resources/tax_id.py ${PYSITELIB}/stripe/api_resources/tax_id.pyc +${PYSITELIB}/stripe/api_resources/tax_id.pyo ${PYSITELIB}/stripe/api_resources/tax_rate.py ${PYSITELIB}/stripe/api_resources/tax_rate.pyc +${PYSITELIB}/stripe/api_resources/tax_rate.pyo ${PYSITELIB}/stripe/api_resources/terminal/__init__.py ${PYSITELIB}/stripe/api_resources/terminal/__init__.pyc +${PYSITELIB}/stripe/api_resources/terminal/__init__.pyo ${PYSITELIB}/stripe/api_resources/terminal/configuration.py ${PYSITELIB}/stripe/api_resources/terminal/configuration.pyc +${PYSITELIB}/stripe/api_resources/terminal/configuration.pyo ${PYSITELIB}/stripe/api_resources/terminal/connection_token.py ${PYSITELIB}/stripe/api_resources/terminal/connection_token.pyc +${PYSITELIB}/stripe/api_resources/terminal/connection_token.pyo ${PYSITELIB}/stripe/api_resources/terminal/location.py ${PYSITELIB}/stripe/api_resources/terminal/location.pyc +${PYSITELIB}/stripe/api_resources/terminal/location.pyo ${PYSITELIB}/stripe/api_resources/terminal/reader.py ${PYSITELIB}/stripe/api_resources/terminal/reader.pyc +${PYSITELIB}/stripe/api_resources/terminal/reader.pyo ${PYSITELIB}/stripe/api_resources/test_helpers/__init__.py ${PYSITELIB}/stripe/api_resources/test_helpers/__init__.pyc +${PYSITELIB}/stripe/api_resources/test_helpers/__init__.pyo ${PYSITELIB}/stripe/api_resources/test_helpers/test_clock.py ${PYSITELIB}/stripe/api_resources/test_helpers/test_clock.pyc -${PYSITELIB}/stripe/api_resources/three_d_secure.py -${PYSITELIB}/stripe/api_resources/three_d_secure.pyc +${PYSITELIB}/stripe/api_resources/test_helpers/test_clock.pyo ${PYSITELIB}/stripe/api_resources/token.py ${PYSITELIB}/stripe/api_resources/token.pyc +${PYSITELIB}/stripe/api_resources/token.pyo ${PYSITELIB}/stripe/api_resources/topup.py ${PYSITELIB}/stripe/api_resources/topup.pyc +${PYSITELIB}/stripe/api_resources/topup.pyo ${PYSITELIB}/stripe/api_resources/transfer.py ${PYSITELIB}/stripe/api_resources/transfer.pyc +${PYSITELIB}/stripe/api_resources/transfer.pyo ${PYSITELIB}/stripe/api_resources/treasury/__init__.py ${PYSITELIB}/stripe/api_resources/treasury/__init__.pyc +${PYSITELIB}/stripe/api_resources/treasury/__init__.pyo ${PYSITELIB}/stripe/api_resources/treasury/credit_reversal.py ${PYSITELIB}/stripe/api_resources/treasury/credit_reversal.pyc +${PYSITELIB}/stripe/api_resources/treasury/credit_reversal.pyo ${PYSITELIB}/stripe/api_resources/treasury/debit_reversal.py ${PYSITELIB}/stripe/api_resources/treasury/debit_reversal.pyc +${PYSITELIB}/stripe/api_resources/treasury/debit_reversal.pyo ${PYSITELIB}/stripe/api_resources/treasury/financial_account.py ${PYSITELIB}/stripe/api_resources/treasury/financial_account.pyc +${PYSITELIB}/stripe/api_resources/treasury/financial_account.pyo ${PYSITELIB}/stripe/api_resources/treasury/inbound_transfer.py ${PYSITELIB}/stripe/api_resources/treasury/inbound_transfer.pyc +${PYSITELIB}/stripe/api_resources/treasury/inbound_transfer.pyo ${PYSITELIB}/stripe/api_resources/treasury/outbound_payment.py ${PYSITELIB}/stripe/api_resources/treasury/outbound_payment.pyc +${PYSITELIB}/stripe/api_resources/treasury/outbound_payment.pyo ${PYSITELIB}/stripe/api_resources/treasury/outbound_transfer.py ${PYSITELIB}/stripe/api_resources/treasury/outbound_transfer.pyc +${PYSITELIB}/stripe/api_resources/treasury/outbound_transfer.pyo ${PYSITELIB}/stripe/api_resources/treasury/received_credit.py ${PYSITELIB}/stripe/api_resources/treasury/received_credit.pyc +${PYSITELIB}/stripe/api_resources/treasury/received_credit.pyo ${PYSITELIB}/stripe/api_resources/treasury/received_debit.py ${PYSITELIB}/stripe/api_resources/treasury/received_debit.pyc +${PYSITELIB}/stripe/api_resources/treasury/received_debit.pyo ${PYSITELIB}/stripe/api_resources/treasury/transaction.py ${PYSITELIB}/stripe/api_resources/treasury/transaction.pyc +${PYSITELIB}/stripe/api_resources/treasury/transaction.pyo ${PYSITELIB}/stripe/api_resources/treasury/transaction_entry.py ${PYSITELIB}/stripe/api_resources/treasury/transaction_entry.pyc +${PYSITELIB}/stripe/api_resources/treasury/transaction_entry.pyo ${PYSITELIB}/stripe/api_resources/usage_record.py ${PYSITELIB}/stripe/api_resources/usage_record.pyc +${PYSITELIB}/stripe/api_resources/usage_record.pyo ${PYSITELIB}/stripe/api_resources/usage_record_summary.py ${PYSITELIB}/stripe/api_resources/usage_record_summary.pyc +${PYSITELIB}/stripe/api_resources/usage_record_summary.pyo ${PYSITELIB}/stripe/api_resources/webhook_endpoint.py ${PYSITELIB}/stripe/api_resources/webhook_endpoint.pyc +${PYSITELIB}/stripe/api_resources/webhook_endpoint.pyo ${PYSITELIB}/stripe/api_version.py ${PYSITELIB}/stripe/api_version.pyc +${PYSITELIB}/stripe/api_version.pyo ${PYSITELIB}/stripe/data/ca-certificates.crt ${PYSITELIB}/stripe/error.py ${PYSITELIB}/stripe/error.pyc +${PYSITELIB}/stripe/error.pyo ${PYSITELIB}/stripe/http_client.py ${PYSITELIB}/stripe/http_client.pyc +${PYSITELIB}/stripe/http_client.pyo ${PYSITELIB}/stripe/multipart_data_generator.py ${PYSITELIB}/stripe/multipart_data_generator.pyc +${PYSITELIB}/stripe/multipart_data_generator.pyo ${PYSITELIB}/stripe/oauth.py ${PYSITELIB}/stripe/oauth.pyc +${PYSITELIB}/stripe/oauth.pyo ${PYSITELIB}/stripe/oauth_error.py ${PYSITELIB}/stripe/oauth_error.pyc +${PYSITELIB}/stripe/oauth_error.pyo ${PYSITELIB}/stripe/object_classes.py ${PYSITELIB}/stripe/object_classes.pyc +${PYSITELIB}/stripe/object_classes.pyo ${PYSITELIB}/stripe/request_metrics.py ${PYSITELIB}/stripe/request_metrics.pyc +${PYSITELIB}/stripe/request_metrics.pyo ${PYSITELIB}/stripe/six.py ${PYSITELIB}/stripe/six.pyc +${PYSITELIB}/stripe/six.pyo ${PYSITELIB}/stripe/stripe_object.py ${PYSITELIB}/stripe/stripe_object.pyc +${PYSITELIB}/stripe/stripe_object.pyo ${PYSITELIB}/stripe/stripe_response.py ${PYSITELIB}/stripe/stripe_response.pyc +${PYSITELIB}/stripe/stripe_response.pyo ${PYSITELIB}/stripe/util.py ${PYSITELIB}/stripe/util.pyc +${PYSITELIB}/stripe/util.pyo ${PYSITELIB}/stripe/version.py ${PYSITELIB}/stripe/version.pyc +${PYSITELIB}/stripe/version.pyo ${PYSITELIB}/stripe/webhook.py ${PYSITELIB}/stripe/webhook.pyc +${PYSITELIB}/stripe/webhook.pyo diff --git a/finance/py-stripe/distinfo b/finance/py-stripe/distinfo index 6f8c13fb229..0a47c7eab2f 100644 --- a/finance/py-stripe/distinfo +++ b/finance/py-stripe/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.52 2022/07/08 14:32:11 wiz Exp $ +$NetBSD: distinfo,v 1.53 2022/08/19 13:30:17 adam Exp $ -BLAKE2s (stripe-3.5.0.tar.gz) = eceb9ffdcdee7f1b6df7c8a46825b02f74e8a167931666d8347ec28e5c4f40cf -SHA512 (stripe-3.5.0.tar.gz) = 67e63f95b489e049d81d9b3929342a8cc2bc3638060d9f278752459d32408bfe8d5f09c4c047a1ed0deedce875b0a84873a3b120f6bb5f30c0668eda5129e4ee -Size (stripe-3.5.0.tar.gz) = 247698 bytes +BLAKE2s (stripe-4.0.2.tar.gz) = 9c9b329d161f3cdb143442c8db075e1332a7bfed9f064b91745bf94189813ee4 +SHA512 (stripe-4.0.2.tar.gz) = b13ace2419555e21a93f37a328bd59d9ac8af69787dc89ed4851ce5a5a616a34e63d5667b9981f43c486dafee18186a9dc32524c047c9db204dc8ba831198c91 +Size (stripe-4.0.2.tar.gz) = 252436 bytes |