Skip to content

Commit bf8fd54

Browse files
authored
Add Python 3.10 support (#97)
1 parent 5145a3f commit bf8fd54

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/ci-build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,16 @@ name: CI Build
33

44
on:
55
push:
6-
branches: [ main ]
6+
branches: [ main, v2 ]
77
pull_request:
8-
branches: [ main ]
98

109
jobs:
1110
build:
12-
runs-on: ubuntu-20.04
11+
runs-on: ubuntu-latest
1312
timeout-minutes: 5
1413
strategy:
1514
matrix:
16-
python-version: ['3.6', '3.7', '3.8', '3.9']
15+
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
1716
steps:
1817
- uses: actions/checkout@v2
1918
- name: Set up Python ${{ matrix.python-version }}

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
coveralls<2
2-
pytest<6 # python 2.7 requires pytest 4
2+
pytest>=6,<7
33
pytest-flask<2
44
pytest-mock<2
55
pytest-cov<3
66
pytest-pythonpath<0.8
77
testfixtures<7
8-
werkzeug<2
8+
werkzeug<2

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,6 @@ def find_version(*file_paths):
4949
'Programming Language :: Python :: 3.7',
5050
'Programming Language :: Python :: 3.8',
5151
'Programming Language :: Python :: 3.9',
52+
'Programming Language :: Python :: 3.10',
5253
],
5354
zip_safe=False)

0 commit comments

Comments
 (0)