Skip to content

Commit

Permalink
Adjust dependencies to break out ssh2.
Browse files Browse the repository at this point in the history
  • Loading branch information
eseglem committed Nov 20, 2023
1 parent 7f4175d commit 4ec6344
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 39 deletions.
61 changes: 31 additions & 30 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 10 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pywattbox"
version = "0.7.0"
version = "0.7.1"
description = "A python wrapper for WattBox APIs."
license = "MIT"
readme = "README.md"
Expand All @@ -27,19 +27,20 @@ httpx = { version = ">=0.23.0", optional = true }
beautifulsoup4 = { version = ">=4.11.0", optional = true }
lxml = { version = ">=4.9.0", optional = true }
h11 = { version = ">=0.14.0", optional = true }
scrapli = { version = ">=2022.7.30", optional = true }
ssh2-python = { version = ">=1.0.0", optional = true }
asyncssh = { version = ">=2.12.0", optional = true }
scrapli = { version = ">=2023.7.30", optional = true }
ssh2-python = { version = ">=0.23.0,<2.0.0", optional = true }
asyncssh = { version = ">=2.2.1,<3.0.0", optional = true }

[tool.poetry.extras]
ip = ["scrapli", "ssh2-python", "asyncssh"]
ip = ["scrapli", "asyncssh"]
http = ["httpx", "beautifulsoup4", "lxml", "h11"]
ssh2 = ["scrapli", "ssh2-python"]

[tool.poetry.group.dev.dependencies]
black = ">=23.1.0"
ruff = ">=0.0.254"
mypy = ">=1.1.0"
pre-commit = ">=3.1.1"
black = "^23.11.0"
ruff = "^0.1.6"
mypy = "^1.7.0"
pre-commit = "^3.5.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 4ec6344

Please sign in to comment.