Skip to content

Commit

Permalink
pip-sync: add flag to ignore package dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fcbertoldi committed Dec 1, 2023
1 parent 5069d14 commit 36c0159
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.py]
indent_style = space
indent_size = 4

[Makefile]
indent_style = tab
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ requirements-dev.txt: requirements.txt requirements-dev.in
pew in $(VENV_NAME) pip-compile --output-file $@ $<

sync:
pew in $(VENV_NAME) pip-sync requirements.txt requirements-dev.txt
pew in $(VENV_NAME) pip-sync --pip-args "--no-deps" requirements.txt requirements-dev.txt

build-pkg:
pew in $(VENV_NAME) python -m build
Expand Down

0 comments on commit 36c0159

Please sign in to comment.