From b60f6c7cdd4d51ca9f695667be6b9bac70dbebc0 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Thu, 14 Jul 2022 11:50:21 +0200 Subject: [PATCH] Bump pip_check (#75164) --- .github/workflows/ci.yaml | 4 ++-- script/pip_check | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 573445a4d2e..29527383bab 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,8 +20,8 @@ on: type: boolean env: - CACHE_VERSION: 0 - PIP_CACHE_VERSION: 0 + CACHE_VERSION: 1 + PIP_CACHE_VERSION: 1 HA_SHORT_VERSION: 2022.8 DEFAULT_PYTHON: 3.9 PRE_COMMIT_CACHE: ~/.cache/pre-commit diff --git a/script/pip_check b/script/pip_check index f29ea5a5dd0..6f48ce15bb1 100755 --- a/script/pip_check +++ b/script/pip_check @@ -3,7 +3,7 @@ PIP_CACHE=$1 # Number of existing dependency conflicts # Update if a PR resolve one! -DEPENDENCY_CONFLICTS=6 +DEPENDENCY_CONFLICTS=7 PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE) LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)