diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-12-12 15:39:47 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-12-12 15:39:47 +0000 |
commit | b7322dfae0b0ab922f0738e0274e1b17230c59d7 (patch) | |
tree | eeb27b686fce91e13efc5043dcf47d131c392b56 /.github/workflows | |
parent | Adding upstream version 3.0.21. (diff) | |
download | ptpython-b7322dfae0b0ab922f0738e0274e1b17230c59d7.tar.xz ptpython-b7322dfae0b0ab922f0738e0274e1b17230c59d7.zip |
Adding upstream version 3.0.22.upstream/3.0.22
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/test.yaml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index ef806cf..7ec8662 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [3.6, 3.7, 3.8, 3.9, "3.10"] + python-version: [3.7, 3.8, 3.9, "3.10"] steps: - uses: actions/checkout@v2 @@ -23,14 +23,12 @@ jobs: sudo apt remove python3-pip python -m pip install --upgrade pip python -m pip install . black isort mypy pytest readme_renderer - python -m pip install . types-dataclasses # Needed for Python 3.6 pip list - name: Type Checker run: | mypy ptpython isort -c --profile black ptpython examples setup.py black --check ptpython examples setup.py - if: matrix.python-version != '3.6' - name: Run Tests run: | ./tests/run_tests.py |