From 1547cec7e2c4571be881a54e874592cb47746578 Mon Sep 17 00:00:00 2001 From: Michael Kubacki Date: Tue, 15 Nov 2022 15:23:26 -0500 Subject: [PATCH] pip-requirements.txt: Use exact match instead of compatible release Now that we're using dependabot, strictly manage exact version of dependencies using an exact match instead of a "compatible release". Compatible releases (~= syntax) are described here: - https://peps.python.org/pep-0440/#compatible-release Signed-off-by: Michael Kubacki --- pip-requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pip-requirements.txt b/pip-requirements.txt index 047bba374a..5d8eb18c4a 100644 --- a/pip-requirements.txt +++ b/pip-requirements.txt @@ -12,8 +12,8 @@ # https://www.python.org/dev/peps/pep-0440/#version-specifiers ## -edk2-pytool-library~=0.12.1 -edk2-pytool-extensions~=0.20.0 +edk2-pytool-library==0.12.1 +edk2-pytool-extensions==0.20.0 edk2-basetools==0.1.29 antlr4-python3-runtime==4.11.1 regex==2022.10.31