From e75d1c2026eab939d5d31097fd0c22924c53abf8 Mon Sep 17 00:00:00 2001 From: Walter Bonetti Date: Wed, 17 Jul 2024 14:04:37 -0400 Subject: [PATCH] fix: importlib_metadata.entry_points attribute error by updating flake8 (#1186) Co-authored-by: Carter Tinney --- .pre-commit-config.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 059c326f2..fa5b292fb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,8 @@ repos: - id: black language_version: python3 - repo: https://github.com/pycqa/flake8 - rev: 3.9.1 # Use the ref you want to point at + rev: 7.0.0 # Use the ref you want to point at hooks: - id: flake8 - args: ['--config=.flake8'] \ No newline at end of file + args: ['--config=.flake8'] + additional_dependencies: ['importlib_metadata==4.3']