pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/finance/py-stripe py-stripe: update to 3.5.0.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/ba34d81e9944
branches:  trunk
changeset: 381515:ba34d81e9944
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Fri Jul 08 14:32:11 2022 +0000

description:
py-stripe: update to 3.5.0.

## 3.5.0 - 2022-06-30
* [#831](https://github.com/stripe/stripe-python/pull/831) API Updates
  * Add support for `deliver_card`, `fail_card`, `return_card`, and `ship_card` test helper methods on resource `Issuing.Card`
  * Switch from using `instance_url` to computing method path in place for custom methods.
  * Switch from using explicit class methods for test helpers instead of using meta-programming.

## 3.4.0 - 2022-06-17
* [#824](https://github.com/stripe/stripe-python/pull/824) API Updates
  * Add support for `fund_cash_balance` test helper method on resource `Customer`
* [#823](https://github.com/stripe/stripe-python/pull/823) Trigger workflows on beta branches

## 3.3.0 - 2022-06-08
* [#818](https://github.com/stripe/stripe-python/pull/818) fix: Update cash balance methods to no longer require nested ID.

## 3.2.0 - 2022-05-23
* [#812](https://github.com/stripe/stripe-python/pull/812) API Updates
  * Add support for new resource `Apps.Secret`

## 3.1.0 - 2022-05-19
* [#810](https://github.com/stripe/stripe-python/pull/810) API Updates
  * Add support for new resources `Treasury.CreditReversal`, `Treasury.DebitReversal`, `Treasury.FinancialAccountFeatures`, `Treasury.FinancialAccount`, `Treasury.FlowDetails`, 
`Treasury.InboundTransfer`, `Treasury.OutboundPayment`, `Treasury.OutboundTransfer`, `Treasury.ReceivedCredit`, `Treasury.ReceivedDebit`, `Treasury.TransactionEntry`, and `Treasury.Transaction`
  * Add support for `retrieve_payment_method` method on resource `Customer`
  * Add support for `list_owners` and `list` methods on resource `FinancialConnections.Account`
* [#719](https://github.com/stripe/stripe-python/pull/719) Set daemon attribute instead of using setDaemon method that was deprecated in Python 3.10
* [#767](https://github.com/stripe/stripe-python/pull/767) Bump vendored six to 1.16.0
* [#806](https://github.com/stripe/stripe-python/pull/806) Start testing on pypy-3.8
* [#811](https://github.com/stripe/stripe-python/pull/811) Add sanitize_id method


## 3.0.0 - 2022-05-09
* [#809](https://github.com/stripe/stripe-python/pull/809) Release of major version v3.0.0. The [migration guide](https://github.com/stripe/stripe-python/wiki/Migration-Guide-for-v3) contains more 
information.
  (⚠️ = breaking changes):
  * ⚠️ Replace the legacy `Order` API with the new `Order` API.
    * New methods: `cancel`, `list_line_items`, `reopen`, and `submit`
    * Removed methods: `pay` and `return_order`
    * Removed resources: `OrderItem` and `OrderReturn`
  * ⚠️ Rename `financial_connections.account.refresh` to `financial_connections.refresh_account`
  * Add support for `amount_discount`, `amount_tax`, and `product` on `LineItem`

## 2.76.0 - 2022-05-05
* [#808](https://github.com/stripe/stripe-python/pull/808) API Updates
  * Add support for new resources `FinancialConnections.AccountOwner`, `FinancialConnections.AccountOwnership`, `FinancialConnections.Account`, and `FinancialConnections.Session`

## 2.75.0 - 2022-05-03
* [#805](https://github.com/stripe/stripe-python/pull/805) API Updates
  * Add support for new resource `CashBalance`

diffstat:

 finance/py-stripe/Makefile |   14 ++-
 finance/py-stripe/PLIST    |  190 +++++++++++---------------------------------
 finance/py-stripe/distinfo |    8 +-
 3 files changed, 62 insertions(+), 150 deletions(-)

diffs (truncated from 506 to 300 lines):

diff -r 0d5c1d2cb4c8 -r ba34d81e9944 finance/py-stripe/Makefile
--- a/finance/py-stripe/Makefile        Fri Jul 08 14:28:07 2022 +0000
+++ b/finance/py-stripe/Makefile        Fri Jul 08 14:32:11 2022 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.53 2022/04/24 17:11:31 adam Exp $
+# $NetBSD: Makefile,v 1.54 2022/07/08 14:32:11 wiz Exp $
 
-DISTNAME=      stripe-2.74.0
+DISTNAME=      stripe-3.5.0
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    finance python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=s/stripe/}
@@ -10,16 +10,20 @@
 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
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-cov>=2.5:../../devel/py-test-cov
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-mock>=1.7:../../devel/py-test-mock
 TEST_DEPENDS+= ${PYPKGPREFIX}-test-xdist>=1.22:../../devel/py-test-xdist
 
-PYTHON_VERSIONED_DEPENDENCIES= test:test
+PYTHON_VERSIONS_INCOMPATIBLE=  27
 
 USE_LANGUAGES= # none
 
-.include "../../lang/python/egg.mk"
-.include "../../lang/python/versioned_dependencies.mk"
+do-test:
+       cd ${WRKSRC} && ${SETENV} ${TEST_ENV} pytest-${PYVERSSUFFIX}
+
+.include "../../lang/python/wheel.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 0d5c1d2cb4c8 -r ba34d81e9944 finance/py-stripe/PLIST
--- a/finance/py-stripe/PLIST   Fri Jul 08 14:28:07 2022 +0000
+++ b/finance/py-stripe/PLIST   Fri Jul 08 14:32:11 2022 +0000
@@ -1,404 +1,312 @@
-@comment $NetBSD: PLIST,v 1.24 2022/04/21 07:54:15 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
+@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
 ${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/account_link.pyo
 ${PYSITELIB}/stripe/api_resources/alipay_account.py
 ${PYSITELIB}/stripe/api_resources/alipay_account.pyc
-${PYSITELIB}/stripe/api_resources/alipay_account.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/secret.py
+${PYSITELIB}/stripe/api_resources/apps/secret.pyc
 ${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/billing_portal/session.pyo
 ${PYSITELIB}/stripe/api_resources/bitcoin_receiver.py
 ${PYSITELIB}/stripe/api_resources/bitcoin_receiver.pyc
-${PYSITELIB}/stripe/api_resources/bitcoin_receiver.pyo
 ${PYSITELIB}/stripe/api_resources/bitcoin_transaction.py
 ${PYSITELIB}/stripe/api_resources/bitcoin_transaction.pyc
-${PYSITELIB}/stripe/api_resources/bitcoin_transaction.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/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/account.py
+${PYSITELIB}/stripe/api_resources/financial_connections/account.pyc
+${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_ownership.py
+${PYSITELIB}/stripe/api_resources/financial_connections/account_ownership.pyc
+${PYSITELIB}/stripe/api_resources/financial_connections/session.py
+${PYSITELIB}/stripe/api_resources/financial_connections/session.pyc
 ${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/invoice_line_item.pyo
 ${PYSITELIB}/stripe/api_resources/issuer_fraud_record.py
 ${PYSITELIB}/stripe/api_resources/issuer_fraud_record.pyc
-${PYSITELIB}/stripe/api_resources/issuer_fraud_record.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.pyo
 ${PYSITELIB}/stripe/api_resources/issuing/card_details.py
 ${PYSITELIB}/stripe/api_resources/issuing/card_details.pyc
-${PYSITELIB}/stripe/api_resources/issuing/card_details.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/order_return.py
-${PYSITELIB}/stripe/api_resources/order_return.pyc
-${PYSITELIB}/stripe/api_resources/order_return.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


Home | Main Index | Thread Index | Old Index