diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ab3720f..24ffb8a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,15 +32,15 @@ jobs: run: | python -m pip install --upgrade pip pip install -e . - pip install coveralls + pip install coveralls --upgrade pip install "django~=${{ matrix.django-version }}.0" - name: Run flake8 run: | - pip install flake8 + pip install flake8 --upgrade flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run pycodestyle run: | - pip install pycodestyle + pip install pycodestyle --upgrade pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run test run: | diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 5f97e59..6a9c5cc 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -35,15 +35,15 @@ jobs: run: | python -m pip install --upgrade pip pip install -e . - pip install coveralls + pip install coveralls --upgrade pip install "django~=${{ matrix.django-version }}.0" - name: Run flake8 run: | - pip install flake8 + pip install flake8 --upgrade flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run pycodestyle run: | - pip install pycodestyle + pip install pycodestyle --upgrade pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run test run: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index df31e80..6609221 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,15 +33,15 @@ jobs: run: | python -m pip install --upgrade pip pip install -e . - pip install coveralls + pip install coveralls --upgrade pip install "django~=${{ matrix.django-version }}.0" - name: Run flake8 run: | - pip install flake8 + pip install flake8 --upgrade flake8 --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run pycodestyle run: | - pip install pycodestyle + pip install pycodestyle --upgrade pycodestyle --exclude=migrations,tests --ignore=E501,E241,E225,E128 . - name: Run test run: |