File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
continuous_delivery_scripts/plugins Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 30
30
31
31
32
32
def _create_wheel () -> None :
33
+ logger .info ("Creating wheel" )
33
34
root = configuration .get_value (ConfigurationVariable .PROJECT_ROOT )
34
35
with cd (root ):
35
36
check_call (
@@ -155,7 +156,8 @@ def check_credentials(self) -> None:
155
156
def generate_code_documentation (self , output_directory : Path , module_to_document : str ) -> None :
156
157
"""Generates code documentation."""
157
158
super ().generate_code_documentation (output_directory , module_to_document )
158
- _generate_pdoc_in_correct_structure (module_to_document , output_directory )
159
+ # FIXME commented out code documentation as failing
160
+ # _generate_pdoc_in_correct_structure(module_to_document, output_directory)
159
161
160
162
def can_add_licence_headers (self ) -> bool :
161
163
"""States that licence headers can be added."""
@@ -167,7 +169,8 @@ def can_get_project_metadata(self) -> bool:
167
169
168
170
def should_include_spdx_in_package (self ) -> bool :
169
171
"""States whether the SPDX documents should be included in the package."""
170
- return True
172
+ # FIXME Comment out SPDX package as no longer working
173
+ return False
171
174
172
175
def get_current_spdx_project (self ) -> Optional [SpdxProject ]:
173
176
"""Gets the current SPDX description."""
You can’t perform that action at this time.
0 commit comments