Skip to content

Commit 227551c

Browse files
authored
Upgrade Typer to 0.17.4 (latest). This fixes options boolean parsing. (#109)
* Upgrade Typer to 0.14.2 (latest). This fixes options boolean parsing. * Changelog
1 parent db7bfeb commit 227551c

File tree

4 files changed

+636
-635
lines changed

4 files changed

+636
-635
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ format: $(VENV_FOLDER) ## Fix code base according to our standards
7373
.PHONY: test
7474
test: ## Test the code with pytest
7575
@echo "🚀 Testing code: Running pytest"
76-
@uv run pytest
76+
@uv run pytest $(filter-out $@ --,$(MAKECMDGOALS))
7777

7878
.PHONY: test-coverage
7979
test-coverage: ## Test the code with pytest

news/109.bugfix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fixed boolean cli options converted to strings. Upgrade `typer` dependency. @sneridagh

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ classifiers = [
2929
dependencies = [
3030
"cookiecutter==2.6.0",
3131
"semver==3.0.2",
32-
"typer==0.12.3",
32+
"typer==0.17.4",
3333
"packaging==24.0",
3434
"gitpython==3.1.43",
3535
"xmltodict==0.13.0",

0 commit comments

Comments
 (0)