Skip to content
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

updating cryptography #32

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .trivyignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# trivy errors to ignore
CVE-2022-40897
CVE-2022-40898
CVE-2022-40898
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ setup-deploy-tools:
.PHONY: setup
setup: setup-trivy setup-cosign setup-deploy-tools
pip install --upgrade pip
pip install "setuptools>=65.5.1" pipenv
pip install "setuptools>=70.0" pipenv
PIP_IGNORE_INSTALLED=1 pipenv install --dev --deploy --ignore-pipfile

# download and install a few ibm cloud cli tools
Expand Down Expand Up @@ -156,7 +156,7 @@ ifdef TRAVIS
endif
# ignore 41002: coverage <6.0b1 resolved (5.5 installed)! it's part of pytest-cov
# which does not have a version containing the fix.
pipenv check --ignore 41002 --ignore 51499
pipenv check --ignore 41002 --ignore 51499 --ignore 72117
pre-commit run --all-files --show-diff-on-failure

.PHONY: start-db_metrics
Expand Down
3 changes: 2 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ click = "==8.1.2"
flask = "==2.2.5"
backoff = "==1.11.1"
boxsdk = {extras = ["jwt"],version = "==3.2.0"}
cryptography = "==42.0.5"
cryptography = "==42.0.8"
hvac = "==0.11.2"
asyncio = "==3.4.3"
requests = "==2.31.0"
Expand All @@ -38,5 +38,6 @@ pytest = "==8.1.1"
Werkzeug = "== 3.0.3"
pre-commit = "==3.7.0"


[requires]
python_version = "3.9"
Loading