Skip to content

Commit 41c539b

Browse files
authored
chore: add Python 3.11 in test.yml (#55)
* chore: add Python 3.11 in test.yml * Update tox.ini
1 parent e94f9f0 commit 41c539b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
1414
strategy:
1515
fail-fast: false
16-
max-parallel: 5
16+
max-parallel: 6
1717
matrix:
18-
python-version: ['3.7', '3.8', '3.9', '3.10']
18+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1919
include:
2020
- python-version: 3.6
2121
os: ubuntu-20.04
@@ -41,7 +41,7 @@ jobs:
4141
tox
4242
4343
- name: Report test-coverage to DeepSource
44-
if: ${{ matrix.python-version == '3.10' }}
44+
if: ${{ matrix.python-version == '3.11' }}
4545
run: |
4646
# Install the CLI
4747
curl https://deepsource.io/cli | sh

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[tox]
22
envlist =
33
docs-html,
4-
py{36,37,38,39,310}-flask1
5-
py{36,37,38,39,310}-flask2
4+
py{36,37,38,39,310,311}-flask1
5+
py{36,37,38,39,310,311}-flask2
66

77
[testenv]
88
commands =
@@ -28,6 +28,7 @@ python =
2828
3.8: py38, docs-html
2929
3.9: py39
3030
3.10: py310
31+
3.11: py311
3132

3233
[testenv:docs-html]
3334
deps =

0 commit comments

Comments
 (0)