Skip to content

Commit 6b8cd2d

Browse files
ci: drop python 3.6 (#1507)
Co-authored-by: Erik Wrede <[email protected]>
1 parent 74db349 commit 6b8cd2d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,11 @@ jobs:
2525
fail-fast: false
2626
matrix:
2727
include:
28-
- {name: '3.11', python: '3.11-dev', os: ubuntu-latest, tox: py311}
28+
- {name: '3.11', python: '3.11', os: ubuntu-latest, tox: py311}
2929
- {name: '3.10', python: '3.10', os: ubuntu-latest, tox: py310}
3030
- {name: '3.9', python: '3.9', os: ubuntu-latest, tox: py39}
3131
- {name: '3.8', python: '3.8', os: ubuntu-latest, tox: py38}
3232
- {name: '3.7', python: '3.7', os: ubuntu-latest, tox: py37}
33-
- {name: '3.6', python: '3.6', os: ubuntu-20.04, tox: py36}
3433
steps:
3534
- uses: actions/checkout@v3
3635
- uses: actions/setup-python@v4

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py3{6,7,8,9,10}, mypy, pre-commit
2+
envlist = py3{7,8,9,10,11}, mypy, pre-commit
33
skipsdist = true
44

55
[testenv]
@@ -8,7 +8,7 @@ deps =
88
setenv =
99
PYTHONPATH = .:{envdir}
1010
commands =
11-
py{36,37,38,39,310}: pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs}
11+
py{37,38,39,310,311}: pytest --cov=graphene graphene --cov-report=term --cov-report=xml examples {posargs}
1212

1313
[testenv:pre-commit]
1414
basepython = python3.10

0 commit comments

Comments
 (0)