fix: update Python version requirement to 3.12 and include Card, City in exported members

This commit is contained in:
deesiigneer
2026-03-09 12:52:50 +00:00
parent dc36f05221
commit 2573c30800
2 changed files with 3 additions and 3 deletions

View File

@@ -24,7 +24,7 @@ pyspapi
Installation
-------------
**Requires Python 3.8 or higher**
**Requires Python 3.12 or higher**
*Windows*

View File

@@ -1,5 +1,5 @@
from pyspapi.types.me import Account
from pyspapi.types.me import Account, Card, City
from pyspapi.types.payment import Item
from pyspapi.types.users import User, UserCards
__all__ = ["Account", "Item", "User", "UserCards"]
__all__ = ["Account", "Card", "City", "Item", "User", "UserCards"]