Skip to content

Commit

Permalink
chore(deps-dev): bump typer from 0.11.1 to 0.12.0 (#235)
Browse files Browse the repository at this point in the history
* chore(deps-dev): bump typer from 0.11.1 to 0.12.0

Bumps [typer](https://github.com/tiangolo/typer) from 0.11.1 to 0.12.0.
- [Release notes](https://github.com/tiangolo/typer/releases)
- [Changelog](https://github.com/tiangolo/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.11.1...0.12.0)

---
updated-dependencies:
- dependency-name: typer
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix tests

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Edgar Ramírez-Mondragón <edgarrm358@gmail.com>
  • Loading branch information
dependabot[bot] and edgarrmondragon authored Apr 1, 2024
1 parent 429a74c commit 57b5333
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 10 deletions.
5 changes: 3 additions & 2 deletions copier_template/{{library_name}}/main.py.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import sys
from typing import List

import structlog
import typer
import typer # type: ignore
from meltano.edk.extension import DescribeFormat
from meltano.edk.logging import default_logging_config, parse_log_level
from {{library_name}}.extension import {{ extension_name }}
Expand All @@ -16,7 +16,8 @@ log = structlog.get_logger(APP_NAME)

ext = {{ extension_name }}()

typer.core.rich = None # remove to enable stylized help output when `rich` is installed
# remove to enable stylized help output when `rich` is installed
typer.core.rich = None # type: ignore
app = typer.Typer(
name=APP_NAME,
pretty_exceptions_enable=False,
Expand Down
76 changes: 69 additions & 7 deletions 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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ types-pyyaml = "^6.0.12.4"
# Cookiecutter tests
mypy = "^1.6"
ruff = ">=0.1,<0.4"
typer = ">=0.6.1,<0.12.0"
typer = ">=0.6.1,<0.13.0"

[tool.ruff]
target-version = "py38"
Expand Down

0 comments on commit 57b5333

Please sign in to comment.