5 Commits

Author SHA1 Message Date
deesiigneer
508a209e74 fix: bump version to 3.3.2 in pyproject.toml 2026-03-09 12:53:55 +00:00
deesiigneer
2573c30800 fix: update Python version requirement to 3.12 and include Card, City in exported members 2026-03-09 12:52:50 +00:00
Aleksey
dc36f05221 Merge pull request #19 from TonyAleksandr/patch-1
fix: include UserCards in exported module members
2026-03-09 15:30:27 +03:00
deesiigneer
2e75de605d fix: include UserCards in exported module members 2026-03-09 12:25:57 +00:00
TonyAleksandr
22219f3e37 fix: remove Cards from exported module members 2026-03-09 09:01:20 +03:00
3 changed files with 5 additions and 5 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,6 +1,6 @@
[project]
name = "pyspapi"
version = "3.3.1"
version = "3.3.2"
description = "API wrapper for SP servers written in Python."
readme = "README.rst"
license = { text = "MIT" }

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 Cards, User
from pyspapi.types.users import User, UserCards
__all__ = ["Account", "Item", "Cards", "User"]
__all__ = ["Account", "Card", "City", "Item", "User", "UserCards"]