2
0
Jelmer Vernooij 4 жил өмнө
parent
commit
e60104becb

+ 2 - 2
.github/workflows/pythonpackage.yml

@@ -25,14 +25,14 @@ jobs:
     - name: Install mypy
       run: |
         pip install -U mypy
-      if: 'matrix.python-version != "pypy3"'
+      if: "matrix.python-version != 'pypy3'"
     - name: Style checks
       run: |
         python -m flake8
     - name: Typing checks
       run: |
         python -m mypy dulwich
-      if: 'matrix.python-version != "pypy3"'
+      if: "matrix.python-version != 'pypy3'"
     - name: Build
       run: |
         python setup.py build_ext -i