Skip to content

Commit a141825

Browse files
authored
Merge branch 'master' into bugfix_typos
2 parents 0014881 + 935c71d commit a141825

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: Python ${{ matrix.version }}
77
strategy:
88
matrix:
9-
version: [2.7, 3.6, 3.8, 3.9]
9+
version: [3.6, 3.10.0]
1010

1111
steps:
1212
- name: Checkout

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
== Unreleased
22

3+
== Version 9.0.0
4+
5+
- Drop Python 2 support ([#549](https://github.com/Shopify/shopify_python_api/pull/549))
6+
- Update API version with 2021-10 release, remove API version 2020-04 ([#548](https://github.com/Shopify/shopify_python_api/pull/548))
7+
38
== Version 8.4.2
49
- Update API version with 2021-07 release, remove API version 2020-01 ([#521](https://github.com/Shopify/shopify_python_api/pull/521))
510

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ pip install --upgrade ShopifyAPI
2727
- [Public and Custom Apps](#public-and-custom-apps)
2828
- [Private Apps](#private-apps)
2929
- [Billing](#billing)
30-
- [Session Tokens](docs/session-tokens)
30+
- [Session Tokens](docs/session-tokens.md)
3131
- [Handling Access Scope Operations](docs/api-access.md)
3232
- [Advanced Usage](#advanced-usage)
3333
- [Prefix Options](#prefix-options)
@@ -234,3 +234,6 @@ Currently there is no support for:
234234
* [developers.shopify.com](https://developers.shopify.com)
235235
* [Shopify.dev](https://shopify.dev)
236236
* [Ask questions on the Shopify forums](http://ecommerce.shopify.com/c/shopify-apis-and-technology)
237+
238+
### Sample apps built using this library
239+
* [Sample Django app](https://github.com/shopify/sample-django-app)

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@
2323
license="MIT License",
2424
install_requires=[
2525
"pyactiveresource>=2.2.2",
26-
"PyJWT <= 1.7.1; python_version == '2.7'",
27-
"PyJWT >= 2.0.0; python_version >= '3.6'",
26+
"PyJWT >= 2.0.0",
2827
"PyYAML",
2928
"six",
3029
],
@@ -39,8 +38,6 @@
3938
"License :: OSI Approved :: MIT License",
4039
"Operating System :: OS Independent",
4140
"Programming Language :: Python",
42-
"Programming Language :: Python :: 2",
43-
"Programming Language :: Python :: 2.7",
4441
"Programming Language :: Python :: 3",
4542
"Programming Language :: Python :: 3.4",
4643
"Programming Language :: Python :: 3.5",

shopify/api_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ def define_version(cls, version):
2727
@classmethod
2828
def define_known_versions(cls):
2929
cls.define_version(Unstable())
30-
cls.define_version(Release("2020-04"))
3130
cls.define_version(Release("2020-07"))
3231
cls.define_version(Release("2020-10"))
3332
cls.define_version(Release("2021-01"))
3433
cls.define_version(Release("2021-04"))
3534
cls.define_version(Release("2021-07"))
35+
cls.define_version(Release("2021-10"))
3636

3737
@classmethod
3838
def clear_defined_versions(cls):

shopify/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "8.4.2"
1+
VERSION = "9.0.0"

0 commit comments

Comments
 (0)