File tree Expand file tree Collapse file tree 6 files changed +13
-12
lines changed Expand file tree Collapse file tree 6 files changed +13
-12
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ decorator==5.1.1
35
35
# via ipython
36
36
defusedxml==0.7.1
37
37
# via jira (setup.cfg)
38
- docutils==0.20.1
38
+ docutils==0.21.2
39
39
# via
40
40
# jira (setup.cfg)
41
41
# sphinx
Original file line number Diff line number Diff line change @@ -76,6 +76,10 @@ jira.resources module
76
76
:undoc-members:
77
77
:show-inheritance:
78
78
79
+ .. autoclass :: jira.resources.Field
80
+ :members:
81
+ :undoc-members:
82
+ :show-inheritance:
79
83
80
84
jira.utils module
81
85
-----------------
Original file line number Diff line number Diff line change 98
98
99
99
# The language for content autogenerated by Sphinx. Refer to documentation
100
100
# for a list of supported languages.
101
- # language = None
101
+ language = "en"
102
+ locale_dirs : list [str ] = []
102
103
103
104
# There are two options for replacing |today|: either, you set today to some
104
105
# non-false value, then it is used:
Original file line number Diff line number Diff line change @@ -2811,14 +2811,8 @@ def add_worklog(
2811
2811
started (Optional[datetime.datetime]): Moment when the work is logged, if not specified will default to now
2812
2812
user (Optional[str]): the user ID or name to use for this worklog
2813
2813
visibility (Optional[Dict[str,Any]]): Details about any restrictions in the visibility of the worklog.
2814
- Optional when creating or updating a worklog. ::
2815
- ```js
2816
- {
2817
- "type": "group", # "group" or "role"
2818
- "value": "<string>",
2819
- "identifier": "<string>" # OPTIONAL
2820
- }
2821
- ```
2814
+ Example of visibility options when creating or updating a worklog.
2815
+ ``{ "type": "group", "value": "<string>", "identifier": "<string>"}``
2822
2816
2823
2817
Returns:
2824
2818
Worklog
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ opt = [
69
69
]
70
70
async = [" requests-futures>=0.9.7" ]
71
71
test = [
72
- " docutils>=0.12 " ,
72
+ " docutils>=0.21.2 " ,
73
73
" flaky" ,
74
74
" MarkupSafe>=0.23" ,
75
75
" oauthlib" ,
Original file line number Diff line number Diff line change @@ -92,7 +92,9 @@ setenv =
92
92
PYTHONHTTPSVERIFY =0
93
93
commands =
94
94
sphinx-build \
95
- -a -n -v -W --keep-going \
95
+ --verbose \
96
+ --write-all \
97
+ --nitpicky --fail-on-warning \
96
98
-b html --color \
97
99
-d " {toxworkdir}/docs_doctree" \
98
100
docs/ " {toxworkdir}/docs_out"
You can’t perform that action at this time.
0 commit comments