From 6c9d03154e21f0f158970bf21e77cee522b8ee08 Mon Sep 17 00:00:00 2001 From: Abhinav Singh Date: Thu, 11 Apr 2024 10:30:28 +0530 Subject: [PATCH] `importlib-metadata; python_version <= 3.7` --- .pre-commit-config.yaml | 3 +++ requirements-testing.txt | 1 + 2 files changed, 4 insertions(+) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8fb02e273a..b458a2ff5b 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -159,7 +159,10 @@ repos: - paramiko == 2.11.0 - types-paramiko == 2.7.3 - types-requests==2.27.30 + # From requirements-tunnel.txt - cryptography==36.0.2; python_version <= '3.6' + # From requirements-testing.txt + - importlib-metadata; python_version <= '3.7' - types-setuptools == 57.4.2 - pyyaml==5.3.1 args: diff --git a/requirements-testing.txt b/requirements-testing.txt index 13eba0f9bb..ce012894bf 100644 --- a/requirements-testing.txt +++ b/requirements-testing.txt @@ -23,3 +23,4 @@ pre-commit==2.16.0 # Types types-requests==2.28.11.5 types-setuptools==64.0.1 +importlib-metadata; python_version <= '3.7' \ No newline at end of file