Skip to content

Commit d12b9ef

Browse files
committed
Bump dependencies
Remove click dependency (not needed)
1 parent ee94d03 commit d12b9ef

5 files changed

Lines changed: 186 additions & 1076 deletions

File tree

.gitignore

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,6 @@ keyfile_test
133133
test_key
134134
test_key.pub
135135
test*.pub
136-
settings.json
137-
.vscode/
138-
.vscode/*
139136
test_ecdsa*
140137
test_rsa*
141138
test_dss*

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"python.testing.unittestArgs": [
3+
"-v",
4+
"-s",
5+
"./tests"
6+
],
7+
"python.testing.pytestEnabled": false,
8+
"python.testing.unittestEnabled": true
9+
}

pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,18 @@ license = { text = "GPL-3.0-or-later" }
1414
authors = [
1515
{ name = "Lars Scheibling", email = "lars@scheibling.se" }
1616
]
17-
requires-python = ">=3.8"
17+
requires-python = ">=3.10"
1818
keywords = ["python", "openssh", "ssh", "keys", "sshkey", "ssh-keygen", "ssh-certificate", "certificate", "parser", "decoder"]
1919
classifiers = [
2020
"Programming Language :: Python :: 3",
2121
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
2222
"Operating System :: OS Independent",
2323
]
2424
dependencies = [
25-
"click~=8.1",
26-
"cryptography>=42.0,<44",
27-
"bcrypt~=4.2",
28-
"PrettyTable~=3.9",
29-
"pytimeparse2~=1.1",
25+
"cryptography~=46.0",
26+
"bcrypt~=5.0",
27+
"PrettyTable~=3.17",
28+
"pytimeparse2~=1.7.1",
3029
]
3130

3231
[project.optional-dependencies]

tests/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)