File tree 4 files changed +41
-6
lines changed
4 files changed +41
-6
lines changed Original file line number Diff line number Diff line change
1
+ # Read the Docs configuration file for Sphinx projects
2
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
3
+
4
+ # Required
5
+ version : 2
6
+
7
+ # Set the OS, Python version and other tools you might need
8
+ build :
9
+ os : ubuntu-22.04
10
+ tools :
11
+ python : " 3.12"
12
+ # You can also specify other tool versions:
13
+ # nodejs: "20"
14
+ # rust: "1.70"
15
+ # golang: "1.20"
16
+
17
+ # Build documentation in the "docs/" directory with Sphinx
18
+ sphinx :
19
+ configuration : docs/conf.py
20
+ # You can configure Sphinx to use a different builder, for instance use the dirhtml builder for simpler URLs
21
+ # builder: "dirhtml"
22
+ # Fail on all warnings to avoid broken references
23
+ # fail_on_warning: true
24
+
25
+ # Optionally build your docs in additional formats such as PDF and ePub
26
+ formats :
27
+ - pdf
28
+ - epub
29
+
30
+ # Optional but recommended, declare the Python requirements required
31
+ # to build your documentation
32
+ # See https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
33
+ python :
34
+ install :
35
+ - requirements : docs/requirements.txt
Original file line number Diff line number Diff line change 21
21
''' .strip ().split (),
22
22
)
23
23
24
- __version__ = '4.3.0 '
24
+ __version__ = '4.3.1 '
25
25
__license__ = 'BSD'
26
26
__copyright__ = 'Copyright 2015 Rick van Hattem (Wolph)'
27
27
__url__ = 'https://github.com/WoLpH/python-progressbar'
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class _COORD(ctypes.Structure):
54
54
55
55
56
56
class _FOCUS_EVENT_RECORD (ctypes .Structure ):
57
- _fields_ = ('bSetFocus' , _BOOL )
57
+ _fields_ = (( 'bSetFocus' , _BOOL ), )
58
58
59
59
60
60
class _KEY_EVENT_RECORD (ctypes .Structure ):
@@ -72,7 +72,7 @@ class _uchar(ctypes.Union):
72
72
73
73
74
74
class _MENU_EVENT_RECORD (ctypes .Structure ):
75
- _fields_ = ('dwCommandId' , _UINT )
75
+ _fields_ = (( 'dwCommandId' , _UINT ), )
76
76
77
77
78
78
class _MOUSE_EVENT_RECORD (ctypes .Structure ):
@@ -85,7 +85,7 @@ class _MOUSE_EVENT_RECORD(ctypes.Structure):
85
85
86
86
87
87
class _WINDOW_BUFFER_SIZE_RECORD (ctypes .Structure ):
88
- _fields_ = ('dwSize' , _COORD )
88
+ _fields_ = (( 'dwSize' , _COORD ), )
89
89
90
90
91
91
class _INPUT_RECORD (ctypes .Structure ):
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ dependencies = ['python-utils >= 3.8.1']
103
103
version = { attr = ' progressbar.__about__.__version__' }
104
104
105
105
[tool .setuptools .packages .find ]
106
- exclude = [' docs' , ' tests' ]
106
+ exclude = [' docs* ' , ' tests* ' ]
107
107
108
108
[tool .setuptools ]
109
109
include-package-data = true
@@ -187,4 +187,4 @@ include= ['progressbar']
187
187
exclude = [' examples' ]
188
188
ignore = [' docs' ]
189
189
190
- reportIncompatibleMethodOverride = false
190
+ reportIncompatibleMethodOverride = false
You can’t perform that action at this time.
0 commit comments