Skip to content

Commit

Permalink
bump version, merge pull request #1175 from tqdm/devel
Browse files Browse the repository at this point in the history
  • Loading branch information
casperdcl committed Jun 12, 2021
2 parents 05ad200 + b7fb6aa commit c1ec3b1
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/comment-bot.yml
Expand Up @@ -29,6 +29,7 @@ jobs:
post({
owner: context.repo.owner, repo: context.repo.repo,
comment_id: context.payload.comment.id, content: "eyes"})
github-token: ${{ secrets.GH_TOKEN }}
- name: Tag Commit
run: |
git clone https://${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY} repo
Expand All @@ -48,3 +49,4 @@ jobs:
post({
owner: context.repo.owner, repo: context.repo.repo,
comment_id: context.payload.comment.id, content: "rocket"})
github-token: ${{ secrets.GH_TOKEN }}
11 changes: 9 additions & 2 deletions .meta/.readme.rst
Expand Up @@ -27,7 +27,7 @@ iterable with ``tqdm(iterable)``, and you're done!
``tqdm(range(N))``.

|Screenshot|
|Video| |Slides|
|Video| |Slides| |Merch|

It can also be executed as a module with pipes:

Expand Down Expand Up @@ -1132,7 +1132,7 @@ Helper methods are available in ``tqdm.contrib.logging``. For example:
Monitoring thread, intervals and miniters
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

``tqdm`` implements a few tricks to to increase efficiency and reduce overhead.
``tqdm`` implements a few tricks to increase efficiency and reduce overhead.

- Avoid unnecessary frequent bar refreshing: ``mininterval`` defines how long
to wait between each refresh. ``tqdm`` always gets updated in the background,
Expand Down Expand Up @@ -1162,6 +1162,11 @@ The monitor thread may be disabled application-wide by setting
``tqdm.tqdm.monitor_interval = 0`` before instantiation of any ``tqdm`` bar.


Merch
-----

You can buy `tqdm branded merch <https://tqdm.github.io/merch>`__ now!

Contributions
-------------

Expand Down Expand Up @@ -1220,6 +1225,8 @@ Citation information: |DOI|
:target: https://tqdm.github.io/video
.. |Slides| image:: https://img.tqdm.ml/slides.jpg
:target: https://tqdm.github.io/PyData2019/slides.html
.. |Merch| image:: https://img.tqdm.ml/merch.jpg
:target: https://tqdm.github.io/merch
.. |Build-Status| image:: https://img.shields.io/github/workflow/status/tqdm/tqdm/Test/master?logo=GitHub
:target: https://github.com/tqdm/tqdm/actions?query=workflow%3ATest
.. |Coverage-Status| image:: https://img.shields.io/coveralls/github/tqdm/tqdm/master?logo=coveralls
Expand Down
11 changes: 9 additions & 2 deletions README.rst
Expand Up @@ -27,7 +27,7 @@ iterable with ``tqdm(iterable)``, and you're done!
``tqdm(range(N))``.

|Screenshot|
|Video| |Slides|
|Video| |Slides| |Merch|

It can also be executed as a module with pipes:

Expand Down Expand Up @@ -1351,7 +1351,7 @@ Helper methods are available in ``tqdm.contrib.logging``. For example:
Monitoring thread, intervals and miniters
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

``tqdm`` implements a few tricks to to increase efficiency and reduce overhead.
``tqdm`` implements a few tricks to increase efficiency and reduce overhead.

- Avoid unnecessary frequent bar refreshing: ``mininterval`` defines how long
to wait between each refresh. ``tqdm`` always gets updated in the background,
Expand Down Expand Up @@ -1381,6 +1381,11 @@ The monitor thread may be disabled application-wide by setting
``tqdm.tqdm.monitor_interval = 0`` before instantiation of any ``tqdm`` bar.


Merch
-----

You can buy `tqdm branded merch <https://tqdm.github.io/merch>`__ now!

Contributions
-------------

Expand Down Expand Up @@ -1439,6 +1444,8 @@ Citation information: |DOI|
:target: https://tqdm.github.io/video
.. |Slides| image:: https://img.tqdm.ml/slides.jpg
:target: https://tqdm.github.io/PyData2019/slides.html
.. |Merch| image:: https://img.tqdm.ml/merch.jpg
:target: https://tqdm.github.io/merch
.. |Build-Status| image:: https://img.shields.io/github/workflow/status/tqdm/tqdm/Test/master?logo=GitHub
:target: https://github.com/tqdm/tqdm/actions?query=workflow%3ATest
.. |Coverage-Status| image:: https://img.shields.io/coveralls/github/tqdm/tqdm/master?logo=coveralls
Expand Down
2 changes: 1 addition & 1 deletion tqdm/utils.py
Expand Up @@ -285,7 +285,7 @@ def _screen_shape_linux(fp): # pragma: no cover
except Exception:
try:
return [int(os.environ[i]) - 1 for i in ("COLUMNS", "LINES")]
except KeyError:
except (KeyError, ValueError):
return None, None


Expand Down

0 comments on commit c1ec3b1

Please sign in to comment.