From b856988855af58c4e576dc2c09532dc73688aa0f Mon Sep 17 00:00:00 2001 From: oligatorr <31451875+oligatorr@users.noreply.github.com> Date: Wed, 23 Apr 2025 15:09:39 +0200 Subject: [PATCH 1/3] use pycose 1.0.1 ootb --- requirements-dev.txt | 1 + setup.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 951c2d2..00c1221 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -6,3 +6,4 @@ isort autoflake bandit autopep8 +pycose>=1.0.1,<1.1 \ No newline at end of file diff --git a/setup.py b/setup.py index 7732618..289f9ce 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def readme(): "cbor2>=5.4.0,<5.5.0", "cwt>=2.3.0,<2.4", "cbor-diag>=1.1.0,<1.2", - #'pycose>=1.0.1,<1.1.0' - "pycose @ git+https://github.com/devisefutures/pycose.git@hsm", + "pycose>=1.0.1,<1.1.0" + # "pycose @ git+https://github.com/devisefutures/pycose.git@hsm", ], ) From 5f7b4a148a3da63daaa4ce21f3147c84d39f36ac Mon Sep 17 00:00:00 2001 From: oligatorr <31451875+oligatorr@users.noreply.github.com> Date: Wed, 23 Apr 2025 15:18:07 +0200 Subject: [PATCH 2/3] use pycose 1.0.1 and higher ootb --- requirements-dev.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 00c1221..b0976ec 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -6,4 +6,4 @@ isort autoflake bandit autopep8 -pycose>=1.0.1,<1.1 \ No newline at end of file +pycose>=1.0.1 \ No newline at end of file diff --git a/setup.py b/setup.py index 289f9ce..e4be16b 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def readme(): "cbor2>=5.4.0,<5.5.0", "cwt>=2.3.0,<2.4", "cbor-diag>=1.1.0,<1.2", - "pycose>=1.0.1,<1.1.0" + "pycose>=1.0.1" # "pycose @ git+https://github.com/devisefutures/pycose.git@hsm", ], ) From e62abaaae1fb568584eb21237e87832d2ca43f08 Mon Sep 17 00:00:00 2001 From: oligatorr <31451875+oligatorr@users.noreply.github.com> Date: Wed, 23 Apr 2025 15:28:36 +0200 Subject: [PATCH 3/3] remove older reference to devisefutures repository --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index e4be16b..0c3703e 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,5 @@ def readme(): "cwt>=2.3.0,<2.4", "cbor-diag>=1.1.0,<1.2", "pycose>=1.0.1" - # "pycose @ git+https://github.com/devisefutures/pycose.git@hsm", ], )