Skip to content

Commit 86bc8ac

Browse files
authored
Merge pull request #35 from bbc/actions
Drop Python 3.6 from GitHub Action runners, include 3.11
2 parents d61505b + 807d5a1 commit 86bc8ac

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
17+
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
1818

1919
steps:
2020
- uses: actions/checkout@v2

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[tox]
2-
envlist = {py36,py37,py38,py39,py310}
2+
envlist = {py36,py37,py38,py39,py310,py311}
33

44
[testenv]
55
deps = .[test]
66
usedevelop = true
77
commands = make test
88
allowlist_externals = make
99
setenv =
10-
COVERAGE_FILE=.coverage.{envname}
10+
COVERAGE_FILE=.coverage.{envname}

0 commit comments

Comments
 (0)