From 45ae369a1c75e9d91530440524089c8b814f60d6 Mon Sep 17 00:00:00 2001 From: mondeja Date: Sat, 1 Jan 2022 19:37:48 +0000 Subject: [PATCH 1/2] Update pre-commit hooks versions --- .pre-commit-config.yaml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d17bc1c..1d9f72d 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,21 +1,21 @@ repos: - repo: https://github.com/asottile/pyupgrade - rev: v2.20.0 + rev: v2.31.0 hooks: - id: pyupgrade args: - --py36-plus - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.0.1 + rev: v4.1.0 hooks: - id: end-of-file-fixer name: end-of-file-fixer - repo: https://github.com/asottile/setup-cfg-fmt - rev: v1.17.0 + rev: v1.20.0 hooks: - id: setup-cfg-fmt - repo: https://github.com/PyCQA/flake8 - rev: 3.9.2 + rev: 4.0.1 hooks: - id: flake8 additional_dependencies: @@ -23,20 +23,20 @@ repos: - flake8-absolute-import files: \.py$ - repo: https://github.com/PyCQA/isort - rev: 5.9.1 + rev: 5.10.1 hooks: - id: isort args: - --filter-files files: \.py$ - repo: https://github.com/psf/black - rev: 21.6b0 + rev: 21.12b0 hooks: - id: black language_version: python3 files: \.py$ - repo: https://github.com/adrienverge/yamllint - rev: v1.26.1 + rev: v1.26.3 hooks: - id: yamllint files: .+\.(yml|yaml) @@ -44,7 +44,7 @@ repos: - -c - .yamllint - repo: https://github.com/mondeja/repo-stream - rev: v1.1.0 + rev: v1.3.1 hooks: - id: repo-stream args: @@ -56,6 +56,6 @@ repos: - id: dev-extras-required - id: root-editorconfig-required - repo: https://github.com/editorconfig-checker/editorconfig-checker.python - rev: 2.3.5 + rev: 2.4.0 hooks: - id: editorconfig-checker From bf25892b9686cb3c4060f9d54ef1c3769c1e7e6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20Mond=C3=A9jar?= Date: Sat, 1 Jan 2022 20:44:21 +0100 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1be639c..3155436 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: - 3.7 - 3.8 - 3.9 + - '3.10' steps: - uses: actions/checkout@v2 - name: Set up Python v${{ matrix.python-version }}