From 4866b791199e20a496307bd29bb8d6669259677b Mon Sep 17 00:00:00 2001 From: Andrei Bespalov <68327988+Fundamentalistic@users.noreply.github.com> Date: Fri, 26 Jan 2024 13:29:37 +0000 Subject: [PATCH 1/2] fix(Makefile): test_environment was removed due to unexisting --- Makefile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 77036d2..c2dad74 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ endif ################################################################################# ## Install Python Dependencies -requirements: test_environment +requirements $(PYTHON_INTERPRETER) -m pip install -U pip setuptools wheel $(PYTHON_INTERPRETER) -m pip install -r requirements.txt @@ -38,7 +38,3 @@ clean: ## Lint using flake8 lint: flake8 --max-line-length=80 src - -## Test python environment is setup correctly -test_environment: - $(PYTHON_INTERPRETER) test_environment.py From 85002ad1d02490db70758ce3e65aa81f9bfd405a Mon Sep 17 00:00:00 2001 From: Andrei Bespalov <68327988+andreybespalov89@users.noreply.github.com> Date: Fri, 26 Jan 2024 21:15:41 +0700 Subject: [PATCH 2/2] Update Makefile fix misspell --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c2dad74..8605811 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ endif ################################################################################# ## Install Python Dependencies -requirements +requirements: $(PYTHON_INTERPRETER) -m pip install -U pip setuptools wheel $(PYTHON_INTERPRETER) -m pip install -r requirements.txt