Skip to content

Commit 70fc8ca

Browse files
committed
No formatting check with black on python 3.9 and pypy3.9
1 parent 019f1b9 commit 70fc8ca

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/continuous-integration-pip.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,12 @@ jobs:
6060
run: |
6161
# stop the build if there are flake8 errors
6262
flake8 src tests --count --show-source --statistics
63-
- name: Type check package source with mypy
63+
- name: Type check package source with mypy (except pypy)
6464
if: ${{ !startsWith(matrix.python-version, 'pypy') }}
6565
run: |
6666
mypy src/nographs
67-
- name: Check source code formatting with Black
67+
- name: Check source code formatting with Black (except python 3.9)
68+
if: ${{ !contains(matrix.python-version, '3.9') }}
6869
run: |
6970
black src/nographs tests --check --verbose --diff
7071
- name: Install from source (required for the pre-commit tests)

0 commit comments

Comments
 (0)