X Tutup
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name = 'Python-Spoke',
version = '1.0.29',
version = '1.0.30',
packages = find_packages(),
description = 'API bindings for Spoke API',
long_description = open(os.path.join(os.path.dirname(__file__), 'README.md'), 'r').read(),
Expand All @@ -12,6 +12,6 @@
author_email = 'rob.hoelz@skinnycorp.com',
url = 'https://github.com/Threadless/python-spoke',
keywords = 'spoke',
install_requires = ['lxml==4.9.3', 'requests==2.27.0'],
install_requires = ['lxml==4.9.3', 'requests==2.32.4'],
tests_require = ['nose==1.3.7', 'rednose==1.3.0'],
)
10 changes: 9 additions & 1 deletion spoke/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import requests
import six

__version__ = '1.0.29'
__version__ = '1.0.30'

__all__ = ['Case', 'Comment', 'Image', 'OrderInfo', 'PackSlipCustomInfo', 'Spoke', 'ValidationError', 'SpokeError']

Expand Down Expand Up @@ -332,6 +332,14 @@ def __init__(self, **kwargs):
'SP10630', # iphone 16 pro tough
'SP10628', # iphone 16 pro max slim
'SP10632', # iphone 16 pro max tough
'SP10803', # iphone 17 slim
'SP10815', # iphone 17 tough
'SP10812', # iphone 17 pro slim
'SP10824', # iphone 17 pro tough
'SP10809', # iphone 17 pro max slim
'SP10821', # iphone 17 pro max tough
'SP10806', # iphone 17 air slim
'SP10818', # iphone 17 air tough
# buttons
'button-round-125', 'button-round-225',
# samsung / galaxy
Expand Down
X Tutup