Skip to content

Commit afb9df6

Browse files
Remove Python 3.6 from GitHub workflow (not supported anymore).
1 parent 5110867 commit afb9df6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
13+
python-version: [3.7, 3.8, 3.9, "3.10"]
1414

1515
steps:
1616
- uses: actions/checkout@v2
@@ -37,9 +37,6 @@ jobs:
3737
mypy --strict src/prompt_toolkit --platform darwin
3838
isort -c --profile black src examples tests setup.py
3939
black --check src examples tests setup.py
40-
# Don't typecheck on 3.6. (That would require
41-
# `--no-warn-usused-ignores` + several other workarounds.)
42-
if: matrix.python-version != '3.6'
4340
- name: Validate README.md
4441
# Ensure that the README renders correctly (required for uploading to PyPI).
4542
run: |

0 commit comments

Comments
 (0)