Skip to content

Bump Django to versions 3.2.23/4.2.7 (security fix). #746

Bump Django to versions 3.2.23/4.2.7 (security fix).

Bump Django to versions 3.2.23/4.2.7 (security fix). #746

Workflow file for this run

name: ✔️ Python lint
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+*'
- 'fl[0-9]+.[0-9]+.[0-9]+*'
- 'fx[0-9]+.[0-9]+.[0-9]+*'
branches:
- 'releng'
jobs:
lint:
name: Python lint
runs-on: ubuntu-latest
steps:
- name: Checkout pynab
uses: actions/checkout@v1
- name: Run Python lint checks
uses: ricardochaves/python-lint@v1.4.0
with:
python-root-list: "nab*"
use-pylint: false
use-mypy: false
# https://github.com/PyCQA/pycodestyle/issues/373
extra-pycodestyle-options: "--ignore=E121,E123,E126,E226,E24,E704,W503,W504,E203 --exclude=*/migrations/"
extra-flake8-options: "--extend-ignore=E203,E501"
extra-black-options: "-l 79"
extra-isort-options: "-l 79 --profile black --indent 4"