Skip to content

Commit 95db012

Browse files
Merge pull request #650 from Shopify/kos/update_build_envs
Add 3.8, 3.9 and 3.11 to test matrix
2 parents b00e506 + 8d8e01e commit 95db012

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ jobs:
66
name: Python ${{ matrix.version }}
77
strategy:
88
matrix:
9-
version: ["3.7", "3.10"]
9+
version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1010

1111
steps:
1212
- name: Checkout
1313
uses: actions/checkout@v2
1414
- name: Set up Python ${{ matrix.python-version }}
15-
uses: actions/setup-python@v2
15+
uses: actions/setup-python@v4
1616
with:
1717
python-version: ${{ matrix.version }}
1818
- name: Install Dependencies

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@
3939
"Operating System :: OS Independent",
4040
"Programming Language :: Python",
4141
"Programming Language :: Python :: 3",
42-
"Programming Language :: Python :: 3.4",
43-
"Programming Language :: Python :: 3.5",
44-
"Programming Language :: Python :: 3.6",
42+
"Programming Language :: Python :: 3.7",
4543
"Programming Language :: Python :: 3.8",
4644
"Programming Language :: Python :: 3.9",
45+
"Programming Language :: Python :: 3.10",
46+
"Programming Language :: Python :: 3.11",
4747
"Topic :: Software Development",
4848
"Topic :: Software Development :: Libraries",
4949
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)