Merge pull request #723 from ianmcorvidae/add-wcwidth-optional

Add 'wcwidth' as an optional cli dependency
This commit is contained in:
Ian McEwen
2024-12-21 20:32:47 -07:00
committed by GitHub
2 changed files with 4 additions and 3 deletions

4
poetry.lock generated
View File

@@ -4346,10 +4346,10 @@ type = ["pytest-mypy"]
[extras]
analysis = ["dash", "dash-bootstrap-components", "pandas", "pandas-stubs"]
cli = ["argcomplete", "dotmap", "print-color", "pyqrcode"]
cli = ["argcomplete", "dotmap", "print-color", "pyqrcode", "wcwidth"]
tunnel = ["pytap2"]
[metadata]
lock-version = "2.0"
python-versions = "^3.9,<3.14"
content-hash = "4ab787ea28390a4e19c2dfbfdee920174146b144a63fa1e138e25b7120941490"
content-hash = "57149482029acdfa364d888d95a95ab90e771e363405ed90a2016138fff6e8a1"

View File

@@ -25,6 +25,7 @@ pytap2 = { version = "^2.3.0", optional = true }
dash-bootstrap-components = { version = "^1.6.0", optional = true }
pandas = { version = "^2.2.2", optional = true }
pandas-stubs = { version = "^2.2.2.240603", optional = true }
wcwidth = {version = "^0.2.13", optional = true}
[tool.poetry.group.dev.dependencies]
hypothesis = "^6.103.2"
@@ -65,7 +66,7 @@ ipywidgets = "^8.1.3"
jupyterlab-widgets = "^3.0.11"
[tool.poetry.extras]
cli = ["pyqrcode", "print-color", "dotmap", "argcomplete"]
cli = ["pyqrcode", "print-color", "dotmap", "argcomplete", "wcwidth"]
tunnel = ["pytap2"]
analysis = ["dash", "dash-bootstrap-components", "pandas", "pandas-stubs"]