Skip to content

Commit 1eba6b8

Browse files
committed
Upgrade base builds to use 3.10
1 parent 7b39fb8 commit 1eba6b8

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
- { VERSION: "3.8", TOXENV: "py38",ALLOW_FAILURE: false }
1414
- { VERSION: "3.9", TOXENV: "py39",ALLOW_FAILURE: false }
1515
- { VERSION: "3.10", TOXENV: "py310",ALLOW_FAILURE: false }
16-
- { VERSION: "3.9", TOXENV: "flake8,doclint,docs,commitlint", ALLOW_FAILURE: false }
17-
- { VERSION: "3.9", TOXENV: "docstrings", ALLOW_FAILURE: true}
16+
- { VERSION: "3.10", TOXENV: "flake8,doclint,docs,commitlint", ALLOW_FAILURE: false }
17+
- { VERSION: "3.10", TOXENV: "docstrings", ALLOW_FAILURE: true}
1818
- { VERSION: "pypy3.9", TOXENV: "pypy", ALLOW_FAILURE: false }
1919

2020
steps:

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{37,38,39,py39},black,flake8,doclint,commitlint,docstrings
2+
envlist = py{37,38,39,310,py39},black,flake8,doclint,commitlint,docstrings
33
minversion = 3.4.0
44

55
[testenv]
@@ -22,7 +22,7 @@ commands = flake8 {posargs} src/github3/ tests/unit/ tests/integration/
2222

2323
[testenv:build]
2424
skip_install = true
25-
basepython = python3.9
25+
basepython = python3.10
2626
deps =
2727
build
2828
commands =
@@ -37,7 +37,7 @@ deps =
3737
commands = black src/github3/ tests/
3838

3939
[testenv:notebooks]
40-
basepython = python3.7
40+
basepython = python3.8
4141
deps =
4242
ipython[notebook]
4343
commands = python tests/nbtest.py
@@ -86,7 +86,7 @@ commands =
8686
rst-lint AUTHORS.rst CONTRIBUTING.rst README.rst
8787
; {toxinidir}/docs/bin/lint
8888

89-
[testenv:py39-commitlint]
89+
[testenv:py310-commitlint]
9090
deps =
9191
gitlint >= 0.8.1
9292
commands =

0 commit comments

Comments
 (0)