Skip to content

Commit 37a4be6

Browse files
authored
Merge pull request #455 from Shopify/melaniew/python-3.9-support
Add python 3.9 support
2 parents e92bd19 + 6e6b3cb commit 37a4be6

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
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]
9+
version: [2.7, 3.6, 3.8, 3.9]
1010

1111
steps:
1212
- name: Checkout

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ The [Shopify Admin API](https://shopify.dev/docs/admin-api) Python Library
1111
### Requirements
1212
You should be signed up as a partner on the [Shopify Partners Dashboard](https://www.shopify.com/partners) so that you can create and manage shopify applications.
1313

14-
#### Python version
15-
This library requires Python 3.8 or lower.
16-
1714
### Installation
1815

1916
To easily install or upgrade to the latest release, use [pip](http://www.pip-installer.org/).

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
scripts=['scripts/shopify_api.py'],
2222
license='MIT License',
2323
install_requires=[
24-
'pyactiveresource>=2.2.0',
24+
'pyactiveresource>=2.2.2',
2525
'PyYAML',
2626
'six',
2727
],
@@ -41,6 +41,8 @@
4141
'Programming Language :: Python :: 3.4',
4242
'Programming Language :: Python :: 3.5',
4343
'Programming Language :: Python :: 3.6',
44+
'Programming Language :: Python :: 3.8',
45+
'Programming Language :: Python :: 3.9',
4446
'Topic :: Software Development',
4547
'Topic :: Software Development :: Libraries',
4648
'Topic :: Software Development :: Libraries :: Python Modules']

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, py36
2+
envlist = py27, py34, py35, py36, py38, py39
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)