Skip to content

Commit 4991e6c

Browse files
committed
Drop Python 2 support
1 parent 00a12cd commit 4991e6c

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
== Unreleased
22

3+
- Drop Python 2 support ([#549](https://github.com/Shopify/shopify_python_api/pull/549))
4+
35
== Version 8.4.2
46
- Update API version with 2021-07 release, remove API version 2020-01 ([#521](https://github.com/Shopify/shopify_python_api/pull/521))
57

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",

0 commit comments

Comments
 (0)