Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update typer requirement from !=0.12.2,<0.13.0,>=0.12.0 to >=0.12.0,!=0.12.2,<0.14.0 #15950

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ kubernetes >= 24.2.0, < 32.0.0
pytz >= 2021.1, < 2025
readchar >= 4.0.0, < 5.0.0
sqlalchemy[asyncio] >= 1.4.22, != 1.4.33, < 2.0.36
typer >= 0.12.0, != 0.12.2, < 0.13.0
typer >= 0.12.0, != 0.12.2, < 0.14.0
3 changes: 1 addition & 2 deletions tests/cli/test_cloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -864,7 +864,7 @@ def test_login_already_logged_in_to_another_profile_cancel_during_select(respx_m

invoke_and_assert(
["cloud", "login"],
expected_code=1,
expected_code=130, # assumes typer > 0.13.0
user_input=(
# Yes, switch profiles
"y"
Expand All @@ -876,7 +876,6 @@ def test_login_already_logged_in_to_another_profile_cancel_during_select(respx_m
"? Would you like to switch profiles? [Y/n]:",
"? Which authenticated profile would you like to switch to?",
"logged-in-profile",
"Aborted",
],
)

Expand Down