From aa5aff246b15a323d90b2e7e0e5128eb3f3f0092 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Wed, 26 Oct 2022 13:43:15 -0700 Subject: [PATCH 1/2] Locks pipenv to the latest, last working version --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4aea177a1..afd3d1a73 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,8 +44,7 @@ jobs: - name: Install pipenv run: | - pipx install pipenv==2022.8.5 - pipenv --version + pipx install pipenv==2022.10.12 - name: Set up Python uses: actions/setup-python@v4 @@ -107,8 +106,7 @@ jobs: - name: Install pipenv run: | - pipx install pipenv==2022.10.4 - pipenv --version + pipx install pipenv==2022.10.12 - name: Set up Python uses: actions/setup-python@v4 From 9b82ab95fbd2f514c6221bf1107c77e621a7b6d7 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Wed, 26 Oct 2022 14:21:51 -0700 Subject: [PATCH 2/2] Updates to the latest pre-commit hook versions --- .pre-commit-config.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4c5a9d483..f1bf47d14 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -37,7 +37,7 @@ repos: exclude: "(^Pipfile\\.lock$)" # Python hooks - repo: https://github.com/asottile/reorder_python_imports - rev: v3.8.3 + rev: v3.9.0 hooks: - id: reorder-python-imports exclude: "(migrations)" @@ -63,7 +63,7 @@ repos: hooks: - id: black - repo: https://github.com/asottile/pyupgrade - rev: v3.0.0 + rev: v3.1.0 hooks: - id: pyupgrade exclude: "(migrations)"