This repository was archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 289
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgpkg: python-pynitrokey 0.4.13-1: Upgrade to 0.4.13.
Remove nitrokey 3 support until python-spsdk is packaged. Nitrokey/pynitrokey#162 git-svn-id: file:///srv/repos/svn-community/svn@1113423 9fca08f4-af9d-4005-b8df-a31f2cc04f65
- Loading branch information
Showing
2 changed files
with
55 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
python-pynitrokey/trunk/python-pynitrokey-0.4.13-remove_spsdk.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
diff --git i/pynitrokey/cli/__init__.py w/pynitrokey/cli/__init__.py | ||
index 3dd8ca3..a22ff1f 100644 | ||
--- i/pynitrokey/cli/__init__.py | ||
+++ w/pynitrokey/cli/__init__.py | ||
@@ -17,7 +17,6 @@ import pynitrokey | ||
import pynitrokey.fido2.operations | ||
from pynitrokey.cli.fido2 import fido2 | ||
from pynitrokey.cli.nethsm import nethsm | ||
-from pynitrokey.cli.nk3 import nk3 | ||
from pynitrokey.cli.pro import pro | ||
from pynitrokey.cli.start import start | ||
from pynitrokey.cli.storage import storage | ||
@@ -57,7 +56,6 @@ def nitropy(): | ||
|
||
nitropy.add_command(fido2) | ||
nitropy.add_command(nethsm) | ||
-nitropy.add_command(nk3) | ||
nitropy.add_command(start) | ||
nitropy.add_command(storage) | ||
nitropy.add_command(pro) | ||
@@ -78,7 +76,6 @@ def ls(): | ||
|
||
fido2.commands["list"].callback() | ||
start.commands["list"].callback() | ||
- nk3.commands["list"].callback() | ||
|
||
|
||
nitropy.add_command(ls) | ||
diff --git i/pyproject.toml w/pyproject.toml | ||
index 8c69386..c61c206 100644 | ||
--- i/pyproject.toml | ||
+++ w/pyproject.toml | ||
@@ -21,7 +21,6 @@ requires = [ | ||
"requests", | ||
"pygments", | ||
"python-dateutil", | ||
- "spsdk >= 1.5.0", | ||
"tqdm", | ||
"urllib3", | ||
"cffi", |