Skip to content

Commit f70dc6c

Browse files
committed
Relax paramiko requirement to >=3.2.0,<4.0.0 for compatibility with platypi
- Changed from paramiko~=3.5.1 to paramiko>=3.2.0,<4.0.0 - Allows compatibility with error-scraper's platypi dependency (requires paramiko<=3.2.0) - Node-scraper only uses basic paramiko features stable since 3.2.0 (SSHClient, connect, etc.) - Resolves dependency conflict blocking error-scraper CI/CD
1 parent fb9cef1 commit f70dc6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ classifiers = ["Topic :: Software Development"]
1212

1313
dependencies = [
1414
"pydantic>=2.8.2",
15-
"paramiko~=3.5.1",
15+
"paramiko>=3.2.0,<4.0.0",
1616
"requests",
1717
"pytz"
1818
]

0 commit comments

Comments
 (0)