Skip to content

Commit dfb9d69

Browse files
committed
🏭 Add an updateall target to the Python Makefile template
1 parent a3fcc25 commit dfb9d69

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.snippets/makefile-mode/python-app-boilerplate

+4
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,10 @@ dist: package # Upload to pypi
8080
repl: # Start a Python REPL in the venv.
8181
$(python)
8282

83+
.PHONY: updatedeps
84+
updatedeps: # Update all dependencies
85+
rye sync --update-all
86+
8387
.PHONY: delint
8488
delint: # Fix linting issues.
8589
$(lint) --fix $(src)

0 commit comments

Comments
 (0)