From 2573c3080031a9577938b592216bb11ad6228973 Mon Sep 17 00:00:00 2001 From: deesiigneer Date: Mon, 9 Mar 2026 12:52:50 +0000 Subject: [PATCH] fix: update Python version requirement to 3.12 and include Card, City in exported members --- README.rst | 2 +- pyspapi/types/__init__.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index 402da93..170ce81 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ pyspapi Installation ------------- -**Requires Python 3.8 or higher** +**Requires Python 3.12 or higher** *Windows* diff --git a/pyspapi/types/__init__.py b/pyspapi/types/__init__.py index 83c526d..cd53f02 100644 --- a/pyspapi/types/__init__.py +++ b/pyspapi/types/__init__.py @@ -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"]