Skip to content

Commit 7a26197

Browse files
committed
Add python 3.9 support
1 parent e2fdcab commit 7a26197

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Python ${{ matrix.version }}
1111
strategy:
1212
matrix:
13-
version: [2.7, 3.6, 3.8]
13+
version: [2.7, 3.6, 3.8, 3.9]
1414

1515
steps:
1616
- uses: actions/checkout@v2

README.md

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

13-
#### Python version
14-
This library requires Python 3.8 or lower.
15-
1613
### Installation
1714

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

setup.py

+2-1
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,7 @@
4141
'Programming Language :: Python :: 3.4',
4242
'Programming Language :: Python :: 3.5',
4343
'Programming Language :: Python :: 3.6',
44+
'Programming Language :: Python :: 3.9',
4445
'Topic :: Software Development',
4546
'Topic :: Software Development :: Libraries',
4647
'Topic :: Software Development :: Libraries :: Python Modules']

tox.ini

+1-1
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, py39
33
skip_missing_interpreters = true
44

55
[testenv]

0 commit comments

Comments
 (0)