Changelog¶
v0.19.0 (2025-03-29)¶
Add
one_lineargument toinfo_countmethodBump dependencies
Remove support for Python 3.8 and 3.9
Add support for Python 3.13
v0.18.0 (2024-12-11)¶
Bump dependencies
Remove support for Python 3.7
Add support for Python 3.12
v0.17.2 (2022-08-29)¶
Fix github and sr.ht de-synchronization
v0.17.1 (2022-08-29)¶
Move to the your-tools organization
Move from invoke to just
Bump flake8 plugins
Bump copier template
Fix two warnings found by SonarQube
Bump black
v0.17.0 (2022-05-13)¶
Add multi selection method
select_choices. Initial patch by @cunyap
v0.16.1 (2022-03-12)¶
Fix bug in
message_for_exception
v0.16.0 (2021-12-22)¶
Drop support for Python 3.6
Bump flake8 and its plugins
v0.15.2 (2021-10-05)¶
Add support for Python 3.10
v0.15.1 (2021-08-14)¶
Fix pypi badge
v0.15.0 (2021-07-31)¶
fatalcan now be called with a custom exit code, different than the default 1.
v0.14.1 (2021-06-06)¶
Development branch is now called
main.Fix #66 - only call
colorama.init()on Windows.
v0.14.0 (2021-04-20)¶
breaking: Remove buggy workarounds on Windows. Colors will now be off by default unless
cli_setup()is called withcolor="always". Configurations that are known to work arecmd.exeandgit-bashwhen usingwinpty.breaking:
colorama.init()is called unconditionally whencli_uiis imported
v0.13.0 (2021-04-19)¶
Move out of TankerHQ GitHub organization
v0.12.0 (2021-02-11)¶
Fix using
info_tablewithkeys="headers"
v0.11.0 (2020-07-23)¶
Remove Python 3.5 compat
Add a
__repr__method to some of the classes
v0.10.3 (2020-04-29)¶
Mark this package as typed
v0.10.2 (2020-02-10)¶
Fix calling
dot()without fileobj argument.
v0.10.1 (2020-02-04)¶
Switch to poetry for packaging and dependency management.
v0.10.0 (2019-12-02)¶
Add a
sortargument to theask_choices()function to disable sorting the list of choices. Patch by@smandon.CI: Drop Python 3.4, add Python 3.8, switch to GitHub Actions
v0.9.1 (2018-12-18)¶
Relax type constraints for the
info_table()function.
v0.9.0 (2018-12-18)¶
Relax constraints on the
Tokentype.Expose the
MessageRecorderclass, not thepytestfixture.
v0.8.0 (2018-12-14)¶
Highlights¶
Breaking change: Rename main package from
uitocli_ui. This name is less likely to cause clash with existing code:# old (<= 0.7) import ui ui.info("This is", ui.green, "green") # new (>= 0.8) import cli_ui cli_ui.info("This is", cli_ui.green, "green")
Breaking change: use colorama instead of hard-coding ANSI sequences names and values of cli_ui constants. All existing names have been kept, but some of the values changed slightly.
ask_functions now take a variable number of tokens as first argument. This allows to color the prompt when requiring input from the user, for instance:res = cli_ui.ask_yes_no( "Deploy to", cli_ui.bold, "production", cli_ui.reset, "?", default=False )
Breaking change: Because of this new feature, the list of choices used by
ask_choiceis now a named keyword argument:# Old (<= 0.7) ask_choice("select a fruit", ["apple", "banana"]) # New (>= 0.8) ask_choice("select a fruit", choices=["apple", "banana"])
Other Changes¶
Annotate everything with
mypy.Use
blackfor automatic code formatting.If you need the
record_message()pytest fixture in your own tests, you can now import it withfrom cli_ui.tests import message_recorder.
v0.7.4 (2018-11-22)¶
Remove buggy
entry_pointsfromsetup.py.
v0.7.3 (2018-11-06)¶
Switch to
dmenv. This makes it possible to usecli-uiwithcolorama >= 4.0.
v0.7.2 (2018-10-11)¶
Switch to poetry .
v0.7.1 (2018-03-29)¶
Fix crash in
ask_passwordwhen password was empty.Let the
KeyboardInterrupt`exception propagate back to the caller instead of catching it ourselves and returningNone. Reported by Théo Delrieu.
v0.7.0 (2018-03-06)¶
Add
ask_passwordandread_password. Patch by @drazisil
v0.6.1 (2017-12-07)¶
Fix metadata (owner moved from TankerApp to TankerHQ)
v0.6.0 (2017-10-30)¶
Export
Colorclass.
v0.5.0 (2017-10-04)¶
Export a
Symbolclass, to use when you do not want to force color as withUnicodeSequence
v0.4.0 (2017-09-27)¶
Expose the previously private
UnicodeSequenceclass.
v0.3.0 (2017-09-13)¶
Add
info_sectionCosmetic changes about prefixes for
debug,warnanderrormessages. (See #6 for the details)
v0.2.0 (2017-09-01)¶
Add
cli_ui.setupto configure things like verbosity and when to use colored output (#3)Add a
message_recorderincli_ui.tests.confthat can be used as apytestfixture in other projects.
v0.1.0 (2017-08-25)¶
First public release