Skip to content

Commit 87d7d8b

Browse files
committed
Add test runs for Python 3.9 and 3.10
1 parent bedfa84 commit 87d7d8b

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.github/workflows/python-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
strategy:
3030
max-parallel: 4
3131
matrix:
32-
python-version: [3.6, 3.7, 3.8]
32+
python-version: [3.6, 3.7, 3.8,3.9,3.10]
3333
steps:
3434
- uses: actions/checkout@v2
3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v1
36+
uses: actions/setup-python@v2
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939
- name: Install dependencies
@@ -59,7 +59,7 @@ jobs:
5959
name: coverage-data
6060
path: .
6161
- name: Set up Python 3.7
62-
uses: actions/setup-python@v1
62+
uses: actions/setup-python@v2
6363
with:
6464
python-version: 3.7
6565
- name: Install dependencies

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,9 @@
6868
"Programming Language :: Python :: 3",
6969
"Programming Language :: Python :: 3.6",
7070
"Programming Language :: Python :: 3.7",
71+
"Programming Language :: Python :: 3.8",
72+
"Programming Language :: Python :: 3.9",
73+
"Programming Language :: Python :: 3.10",
7174
"Programming Language :: Python :: Implementation :: CPython",
7275
],
7376
zip_safe=False,

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
[tox]
2-
envlist = py36,py37,py38
2+
envlist = py36,py37,py38,py39,py310
33

44
[gh-actions]
55
python =
66
3.6: py36
77
3.7: py37
88
3.8: py38
9+
3.9: py39
10+
3.10: py310
911

1012
[testenv]
1113
commands = coverage run --source commercetools --parallel -m pytest {posargs}

0 commit comments

Comments
 (0)