Skip to content

Commit

Permalink
fix(cli): redundant Typer extras (#196)
Browse files Browse the repository at this point in the history
* fix(cli, dev): use plain typer without extras

* fix(cli, dev): lock files - use plain typer without extras

* bump CLI to 1.5.2
  • Loading branch information
DavidVujic committed Apr 10, 2024
1 parent 367ece4 commit e0489dd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion poetry.lock

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

2 changes: 1 addition & 1 deletion projects/polylith_cli/poetry.lock

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

4 changes: 2 additions & 2 deletions projects/polylith_cli/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "polylith-cli"
version = "1.5.1"
version = "1.5.2"
description = "Python tooling support for the Polylith Architecture"
authors = ['David Vujic']
homepage = "https://davidvujic.github.io/python-polylith-docs/"
Expand Down Expand Up @@ -39,7 +39,7 @@ packages = [
python = "^3.8"
tomlkit = "^0.11.5"
rich = "^13.6.0"
typer = {extras = ["all"], version = "0.*"}
typer = "0.*"

[tool.poetry.scripts]
poly = "polylith_cli.polylith.cli.core:app"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ python = "^3.8.1"
poetry = "^1.2"
tomlkit = "^0.11.5"
rich = "^13.6.0"
typer = {extras = ["all"], version = "0.*"}
cleo = "^2.1.0"
hatchling = "^1.21.0"
typer = "0.*"

[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
Expand Down

0 comments on commit e0489dd

Please sign in to comment.