Skip to content

Commit

Permalink
build: fix build Make target (#219)
Browse files Browse the repository at this point in the history
This commit removes a line in the upgrade Make target that attempts to delete a file that doesn't exist. The lines that generated the file that is being deleted were deleted in a previous commit.
  • Loading branch information
MichaelRoytman authored Sep 9, 2024
1 parent bf0493f commit 90b4826
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ docs: ## generate Sphinx HTML documentation, including API docs


# Define PIP_COMPILE_OPTS=-v to get more information during make upgrade.
PIP_COMPILE = pip-compile --rebuild --upgrade $(PIP_COMPILE_OPTS)
PIP_COMPILE = pip-compile --rebuild $(PIP_COMPILE_OPTS)

COMMON_CONSTRAINTS_TXT=requirements/common_constraints.txt
.PHONY: $(COMMON_CONSTRAINTS_TXT)
Expand All @@ -55,7 +55,6 @@ upgrade: $(COMMON_CONSTRAINTS_TXT)
# Let tox control the Django version for tests
sed '/^[dD]jango==/d' requirements/test.txt > requirements/test.tmp
mv requirements/test.tmp requirements/test.txt
rm requirements/*.txt.tmp

quality-python: ## Run python linters
tox -e quality
Expand Down

0 comments on commit 90b4826

Please sign in to comment.