在 vscode 中导入条带时出现弃用警告

问题描述 投票:0回答:1

我收到此错误消息:

DeprecationWarning:
The stripe.app_info package is deprecated, please change your
imports to import from stripe directly.
From:
from stripe.app_info import AppInfo
To:
from stripe import AppInfo

但问题是我没有任何名为“from stripe.app_info import AppInfo”的导入,我已经彻底搜索了代码。由于此错误,我的测试无法运行,但它在上周五有效。有没有人有类似的条纹问题,或者有人知道如何解决这个问题,因为我的错误消息并不真正适用于我的导入。也许这是条纹的第三手库?

我尝试运行我的测试,但由于错误,测试无法运行

python stripe-payments python-import importerror flask-restful
1个回答
0
投票

https://github.com/stripe/stripe-python/issues/1167

确保更新到最新版本的 stripe-python(在撰写本文时为 7.8.2)来修复此问题。 (https://github.com/stripe/stripe-python/blob/master/CHANGELOG.md#782---2023-12-11)

上周五成功了

从那时起,您大多数人要么更新了 Stripe 库依赖项,要么改变了对待方式

DeprecationWarnings

© www.soinside.com 2019 - 2024. All rights reserved.