-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version 0.0.8 #428
Version 0.0.8 #428
Conversation
the CI failure here looks like PyCQA/bandit#488 |
ah yeah, new bandit release (1.6.1) with a fix for the above bug that doesn't appear to be working here... |
@creviera want to append a commit pinning to the version that doesn't suffer from this bug, e.g.: diff --git a/Makefile b/Makefile
index 6635db9..cf0ab18 100644
--- a/Makefile
+++ b/Makefile
@@ -57,7 +57,7 @@ safety: ## Runs `safety check` to check python dependencies for vulnerabilities
.PHONY: bandit
bandit: ## Run bandit with medium level excluding test-related folders
pip install --upgrade pip && \
- pip install --upgrade bandit!=1.6.0 && \
+ pip install --upgrade bandit==1.5.1 && \
bandit -ll --recursive . --exclude tests,.venv
.PHONY: check then we can file an issue for unpinning as followup |
26ad606
to
108a74e
Compare
108a74e
to
6c198b7
Compare
I tested building the debian package in qubes and was able to log into the client and see decrypted messages. |
Looks good - can you push a 0.0.8 tag on f526a12 (flagging the commit here since the tag should be on this specific commit)? |
confirming successful build on these changes: https://circleci.com/gh/freedomofpress/securedrop-debian-packaging/25 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks!
See discussion in the client repo where we also encountered this issue: freedomofpress/securedrop-client#428
Update to version 0.0.8
This has the pipenv -> pip-tools change, which will unblock freedomofpress/securedrop-builder#44 and freedomofpress/securedrop-builder#48