Skip to content

Commit

Permalink
imgtool: Bump cryptography library version
Browse files Browse the repository at this point in the history
Update requirements.txt to fix failing CI jobs due to
missing PrivateKeyType and PublicKeyType which are available
in cryptography library since version 40.0.0

Signed-off-by: Rustam Ismayilov <rustam.ismayilov@arm.com>
Change-Id: I63552966051a19dc33d5c53b499d216bcfdcf89b
  • Loading branch information
rustammendel committed Jul 7, 2024
1 parent 56ca566 commit 8df83f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cryptography>=2.6
cryptography>=40.0.0
intelhex
click
cbor2
Expand Down
3 changes: 2 additions & 1 deletion scripts/setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# SPDX-License-Identifier: Apache-2.0

import setuptools

from imgtool import imgtool_version

setuptools.setup(
Expand All @@ -14,7 +15,7 @@
packages=setuptools.find_packages(),
python_requires='>=3.6',
install_requires=[
'cryptography>=2.4.2',
'cryptography>=40.0.0',
'intelhex>=2.2.1',
'click',
'cbor2',
Expand Down

0 comments on commit 8df83f9

Please sign in to comment.