Skip to content

Commit 62627e1

Browse files
authored
Merge branch 'master' into NabeelAhsen-add-sample-django-app-to-readme
2 parents f52d07e + 5f07c68 commit 62627e1

File tree

7 files changed

+24
-9
lines changed

7 files changed

+24
-9
lines changed

.github/dependabot.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
time: "00:00"
8+
timezone: "UTC"
9+
reviewers:
10+
- Shopify/core-build-learn
11+
labels:
12+
- "Pip upgrades"
13+
open-pull-requests-limit: 100
14+
registries: '*'

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
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
@@ -26,6 +26,5 @@ jobs:
2626
- name: upload coverage to Codecov
2727
uses: codecov/codecov-action@v1
2828
with:
29-
token: ${{ secrets.CODECOV_TOKEN }}
3029
name: codecov-umbrella
3130
fail_ci_if_error: true

CHANGELOG

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

3+
- Drop Python 2 support ([#549](https://github.com/Shopify/shopify_python_api/pull/549))
4+
5+
== Version 8.4.2
6+
- Update API version with 2021-07 release, remove API version 2020-01 ([#521](https://github.com/Shopify/shopify_python_api/pull/521))
7+
38
== Version 8.4.1
49
- Bug fix: `sanitize_shop_domain` now returns `None` rather than `'none.myshopify.com'` if no `shop_domain` arg is passed in ([#499](https://github.com/Shopify/shopify_python_api/pull/499))
510

README.md

Lines changed: 1 addition & 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)

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-01"))
3130
cls.define_version(Release("2020-04"))
3231
cls.define_version(Release("2020-07"))
3332
cls.define_version(Release("2020-10"))
3433
cls.define_version(Release("2021-01"))
3534
cls.define_version(Release("2021-04"))
35+
cls.define_version(Release("2021-07"))
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.1"
1+
VERSION = "8.4.2"

0 commit comments

Comments
 (0)