Skip to content

Commit

Permalink
Update API and SDK version (#63)
Browse files Browse the repository at this point in the history
* WIP initial update of sdk and api version

* trigger circleci
  • Loading branch information
cosimon authored Sep 22, 2020
1 parent e2614e6 commit cfc189f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
classifiers=["Programming Language :: Python :: 3 :: Only"],
py_modules=["tap_shopify"],
install_requires=[
"ShopifyAPI==7.0.1",
"ShopifyAPI==8.0.1",
"singer-python==5.4.1",
],
extras_require={
Expand Down
2 changes: 1 addition & 1 deletion tap_shopify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
def initialize_shopify_client():
api_key = Context.config['api_key']
shop = Context.config['shop']
version = '2019-10'
version = '2020-07'
session = shopify.Session(shop, version, api_key)
shopify.ShopifyResource.activate_session(session)

Expand Down

0 comments on commit cfc189f

Please sign in to comment.