Skip to content

Commit 5b70022

Browse files
committed
fixed docs build for newer sphinx releases
1 parent e664f04 commit 5b70022

File tree

2 files changed

+1
-149
lines changed

2 files changed

+1
-149
lines changed

CHANGES.rst

Lines changed: 0 additions & 147 deletions
Original file line numberDiff line numberDiff line change
@@ -9,150 +9,3 @@ releases or the commit log:
99
- https://github.com/WoLpH/python-progressbar/commits/develop
1010

1111
Hint: click on the `...` button to see the change message.
12-
13-
The list below should be the same as the list of releases above but tends to be
14-
out of date and/or incomplete:
15-
16-
.. changelog::
17-
:version: dev
18-
:released: Ongoing
19-
20-
.. change::
21-
:tags: docs
22-
23-
Updated CHANGES.
24-
25-
.. changelog::
26-
:version: 3.15
27-
:released: 2017-03-15
28-
29-
.. change::
30-
Large performance improvements
31-
32-
.. change::
33-
Dropped Pypy3 support in Travis tests
34-
35-
.. change::
36-
Improved output redirection (fixed several bugs)
37-
38-
.. change::
39-
Showing N/A when no numbers are available
40-
41-
.. change::
42-
Improved docs
43-
44-
45-
.. changelog::
46-
:version: 3.5
47-
:released: 2015-11-15
48-
49-
.. change::
50-
Added support for size-dependent widgets
51-
52-
.. change::
53-
Fixed inheritance issues
54-
55-
.. changelog::
56-
:version: 3.4
57-
:released: 2015-11-11
58-
59-
.. change::
60-
Added usage documentation
61-
62-
.. change::
63-
Fixed several bugs including default widths and output redirection
64-
65-
:version: 3.3
66-
:released: 2015-10-12
67-
68-
.. change::
69-
:tags: unknown-length
70-
71-
Fixed `UnknownLength` handling. Thanks to @takluyver
72-
73-
.. changelog::
74-
:version: 3.2
75-
:released: 2015-10-11
76-
77-
.. change::
78-
:tags: packaging
79-
80-
Cookiecutter package
81-
82-
.. changelog::
83-
:version: 3.1
84-
:released: 2015-07-11
85-
86-
.. change::
87-
:tags: python 3
88-
89-
Python 3 support
90-
91-
2011-05-15:
92-
- Removed parse errors for Python2.4 (no, people *should not* be using it
93-
but it is only 3 years old and it does not have that many differences)
94-
95-
- split up progressbar.py into logical units while maintaining backwards
96-
compatability
97-
98-
- Removed MANIFEST.in because it is no longer needed and it was causing
99-
distribute to show warnings
100-
101-
102-
2011-05-14:
103-
- Changes to directory structure so pip can install from Google Code
104-
- Python 3.x related fixes (all examples work on Python 3.1.3)
105-
- Added counters, timers, and action bars for iterators with unknown length
106-
107-
2010-08-29:
108-
- Refactored some code and made it possible to use a ProgressBar as
109-
an iterator (actually as an iterator that is a proxy to another iterator).
110-
This simplifies showing a progress bar in a number of cases.
111-
112-
2010-08-15:
113-
- Did some minor changes to make it compatible with python 3.
114-
115-
2009-05-31:
116-
- Included check for calling start before update.
117-
118-
2009-03-21:
119-
- Improved FileTransferSpeed widget, which now supports an unit parameter,
120-
defaulting to 'B' for bytes. It will also show B/s, MB/s, etc instead of
121-
B/s, M/s, etc.
122-
123-
2009-02-24:
124-
- Updated licensing.
125-
- Moved examples to separated file.
126-
- Improved _need_update() method, which is now as fast as it can be. IOW,
127-
no wasted cycles when an update is not needed.
128-
129-
2008-12-22:
130-
- Added SimpleProgress widget contributed by Sando Tosi
131-
<matrixhasu at gmail.com>.
132-
133-
2006-05-07:
134-
- Fixed bug with terminal width in Windows.
135-
- Released version 2.2.
136-
137-
2005-12-04:
138-
- Autodetection of terminal width.
139-
- Added start method.
140-
- Released version 2.1.
141-
142-
2005-12-04:
143-
- Everything is a widget now!
144-
- Released version 2.0.
145-
146-
2005-12-03:
147-
- Rewrite using widgets.
148-
- Released version 1.0.
149-
150-
2005-06-02:
151-
- Rewrite.
152-
- Released version 0.5.
153-
154-
2004-06-15:
155-
- First version.
156-
- Released version 0.1.
157-
158-
.. todo:: vim: set filetype=rst:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,7 @@ def parse_requirements(filename):
8484
zip_safe=False,
8585
extras_require={
8686
'docs': [
87-
'changelog',
88-
'sphinx>=1.5.0',
87+
'sphinx>=1.7.0',
8988
],
9089
'tests': [
9190
'flake8',

0 commit comments

Comments
 (0)