Skip to content

Commit 6717b31

Browse files
committed
Merge branch 'release/3.53.2'
2 parents 6a1369e + 1828744 commit 6717b31

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ Introduction
3737
A text progress bar is typically used to display the progress of a long
3838
running operation, providing a visual cue that processing is underway.
3939

40+
The progressbar is based on the old Python progressbar package that was published on the now defunct Google Code. Since that project was completely abandoned by its developer and the developer did not respond to email, I decided to fork the package. This package is still backwards compatible with the original progressbar package so you can safely use it as a drop-in replacement for existing project.
41+
4042
The ProgressBar class manages the current progress, and the format of the line
4143
is given by a number of widgets. A widget is an object that may display
4244
differently depending on the state of the progress bar. There are many types

progressbar/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
long running operations.
2020
'''.strip().split())
2121
__email__ = '[email protected]'
22-
__version__ = '3.53.1'
22+
__version__ = '3.53.2'
2323
__license__ = 'BSD'
2424
__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
2525
__url__ = 'https://github.com/WoLpH/python-progressbar'

progressbar/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@ def __init__(self, target, capturing=False, listeners=set()):
191191
self.listeners = listeners
192192
self.needs_clear = False
193193

194+
def isatty(self):
195+
return self.target.isatty()
196+
194197
def write(self, value):
195198
if self.capturing:
196199
self.buffer.write(value)

setup.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,6 @@ def run_tests(self):
4545
'flake8>=3.7.7',
4646
'pytest>=4.6.9',
4747
'pytest-cov>=2.6.1',
48-
'pytest-flakes>=4.0.0',
49-
'pytest-pep8>=1.0.6',
5048
'freezegun>=0.3.11',
5149
'sphinx>=1.8.5',
5250
]

0 commit comments

Comments
 (0)