From b5393eade9ce1035cf90f682e06451733a303555 Mon Sep 17 00:00:00 2001 From: Umut Date: Tue, 28 Feb 2023 14:32:02 +0100 Subject: [PATCH] chore: disable license check in pcc It needs to be disabled because we use different versions of dependencies depending on the python version. This system was not ideal anyway, it was just checking for string equality, whereas it should have checked if the licenses are accepted without looking into a pre-committed file. Another PR will follow to improve the situation around licenses. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 135cae49e..83f3268be 100644 --- a/Makefile +++ b/Makefile @@ -78,7 +78,7 @@ pcc: --no-print-directory pcc_internal PCC_DEPS := check_python_format check_finalize_nb python_linting mypy_ci pydocstyle shell_lint -PCC_DEPS += check_supported_functions check_licenses +PCC_DEPS += check_supported_functions # check_licenses # Not commented on purpose for make help, since internal .PHONY: pcc_internal