Skip to content

Commit 6ac2fc6

Browse files
authored
Merge branch 'master' into paulinakhew-add-license
2 parents 5fc8fd8 + 37a4be6 commit 6ac2fc6

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
@@ -12,9 +12,6 @@ The [Shopify Admin API](https://shopify.dev/docs/admin-api) Python Library
1212
### Requirements
1313
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.
1414

15-
#### Python version
16-
This library requires Python 3.8 or lower.
17-
1815
### Installation
1916

2017
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)