Skip to content

Commit

Permalink
Updated dependencies and add make command
Browse files Browse the repository at this point in the history
This changeset updates several dependencies to address security audit findings and also adds a py-lock make command to make managing our Python dependencies more manageable.

Signed-off-by: Carlo Costino <[email protected]>
  • Loading branch information
ccostino committed Oct 30, 2023
1 parent f31a78c commit 88f0715
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 724 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,10 @@ js-test: ## Run javascript unit tests
fix-imports: ## Fix imports using isort
poetry run isort ./app ./tests

.PHONY: py-lock
py-lock: ## Syncs dependencies and updates lock file without performing recursive internal updates
poetry lock --no-update

.PHONY: freeze-requirements
freeze-requirements: ## create static requirements.txt
poetry export --without-hashes --format=requirements.txt > requirements.txt
Expand Down
Loading

0 comments on commit 88f0715

Please sign in to comment.