Skip to content

Commit

Permalink
Merge pull request #205 from pavdmyt/drop-py36
Browse files Browse the repository at this point in the history
Drop Python 3.6 support

#205
  • Loading branch information
pavdmyt committed Jul 16, 2022
2 parents 2c46f9c + 93d5270 commit eefe19b
Show file tree
Hide file tree
Showing 11 changed files with 951 additions and 792 deletions.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -52,7 +52,7 @@ or as a function `decorator`_:
Features
--------

- Runs at all major **CPython** versions (*3.6*, *3.7*, *3.8*, *3.9*), **PyPy**
- Runs at all major **CPython** versions (*3.7*, *3.8*, *3.9*), **PyPy**
- Supports all (70+) spinners from `cli-spinners`_
- Supports all *colors*, *highlights*, *attributes* and their mixes from `termcolor`_ library
- Easy to combine with other command-line libraries, e.g. `prompt-toolkit`_
Expand Down
4 changes: 2 additions & 2 deletions examples/hide_show_prompt_toolkit.py
Expand Up @@ -44,15 +44,15 @@
time.sleep(1)
with sp.hidden():
print(
HTML(u"<b>></b> <msg>image 1</msg> <sub-msg>download complete</sub-msg>"),
HTML("<b>></b> <msg>image 1</msg> <sub-msg>download complete</sub-msg>"),
style=style,
)

# task 2
time.sleep(2)
with sp.hidden():
print(
HTML(u"<b>></b> <msg>image 2</msg> <sub-msg>download complete</sub-msg>"),
HTML("<b>></b> <msg>image 2</msg> <sub-msg>download complete</sub-msg>"),
style=style,
)

Expand Down

0 comments on commit eefe19b

Please sign in to comment.